summaryrefslogtreecommitdiff
path: root/cesar/maximus/python/boost/src/interface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cesar/maximus/python/boost/src/interface.cpp')
-rw-r--r--cesar/maximus/python/boost/src/interface.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/cesar/maximus/python/boost/src/interface.cpp b/cesar/maximus/python/boost/src/interface.cpp
new file mode 100644
index 0000000000..16f18c6987
--- /dev/null
+++ b/cesar/maximus/python/boost/src/interface.cpp
@@ -0,0 +1,31 @@
+/* Maximus project {{{
+ *
+ * Copyright (C) 2012 MStar Semiconductor
+ *
+ * <<<Licence>>>
+ *
+ * }}} */
+/**
+ * \file maximus/python/boost/src/interface.cpp
+ * \ingroup maximus_python_boost
+ *
+ */
+#include "maximus/python/boost/inc/maximus.h"
+#include "maximus/python/boost/inc/msg.h"
+#include "maximus/python/boost/inc/sta.h"
+#include "maximus/python/boost/inc/interface.h"
+#include <boost/python.hpp>
+
+BOOST_PYTHON_MODULE(interface)
+{
+ /**
+ * Documentation about wrapper split can be found here:
+ *
+ * website: http://www.boost.org
+ * baseurl: /doc/libs/1_51_0/libs/python/doc/tutorial/doc/html/python/techniques.html
+ * anchor: #python.extending_wrapped_objects_in_python
+ */
+ export_maximus ();
+ export_sta ();
+ export_msg ();
+}