git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@1018 626c5289-ae23-0410-ae9c-e8d60b6d4f22
28 lines
724 B
C++
28 lines
724 B
C++
/* -----------------------------------------------------------------------------
|
|
* wadpyinit.cxx
|
|
*
|
|
* C++ automatic initializer for Python module.
|
|
*
|
|
* Author(s) : David Beazley (beazley@cs.uchicago.edu)
|
|
*
|
|
* Copyright (C) 2000. The University of Chicago
|
|
* See the file LICENSE for information on usage and redistribution.
|
|
* ----------------------------------------------------------------------------- */
|
|
|
|
#include "wad.h"
|
|
|
|
extern "C" void pywadinit();
|
|
|
|
/* This hack is used to auto-initialize wad regardless of whether we are
|
|
used as an imported module or as a link-library for another module */
|
|
|
|
class wadinitializer {
|
|
public:
|
|
wadinitializer() {
|
|
pywadinit();
|
|
}
|
|
};
|
|
|
|
static wadinitializer wi;
|
|
|
|
|