~uhh-ssd/+junk/humidity_readout

1 by Joachim Erfle
initial commit
1
// cplplotcanvasmodule - C python wrapper for the plplotcanvas
2
//
3
// Copyright (C) 2004, 2005 Thomas J. Duck
4
// All rights reserved.
5
//
6
// Thomas J. Duck <tom.duck@dal.ca>
7
// Department of Physics and Atmospheric Science,
8
// Dalhousie University, Halifax, Nova Scotia, Canada, B3H 3J5
9
//
10
//
11
// NOTICE
12
//
13
// This library is free software; you can redistribute it and/or
14
// modify it under the terms of the GNU Lesser General Public
15
// License as published by the Free Software Foundation; either
16
// version 2.1 of the License, or (at your option) any later version.
17
//
18
// This library is distributed in the hope that it will be useful,
19
// but WITHOUT ANY WARRANTY; without even the implied warranty of
20
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21
// Lesser General Public License for more details.
22
//
23
// You should have received a copy of the GNU Lesser General Public
24
// License along with this library; if not, write to the Free Software
25
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
26
// USA
27
//
28
29
#include <pygobject.h>
30
31
#define PY_ARRAY_UNIQUE_SYMBOL    plplotcanvasapi
32
#include "arrayobject.h"
33
34
#include "plplot.h"
35
36
void cplplotcanvas_register_classes( PyObject *d );
37
extern PyMethodDef cplplotcanvas_functions[];
38
39
PLDLLIMPEXP_CPLPLOTCANVASMODULE DL_EXPORT( void )
40
initcplplotcanvas( void )
41
{
42
    PyObject *m, *d;
43
44
    init_pygobject();
45
46
    m = Py_InitModule( "cplplotcanvas", cplplotcanvas_functions );
47
    d = PyModule_GetDict( m );
48
49
    cplplotcanvas_register_classes( d );
50
51
    import_array();
52
53
    if ( PyErr_Occurred() )
54
    {
55
        Py_FatalError( "can't initialise module cplplotcanvas" );
56
    }
57
}