Menu

[ee7d4c]: / binding / python / rdf.cpp  Maximize  Restore  History

Download this file

22 lines (19 with data), 603 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
/** @file "/owlcpp/binding/python/rdf.cpp"
part of owlcpp project.
@n Distributed under the Boost Software License, Version 1.0; see doc/license.txt.
@n Copyright Mikhail K Levin 2011
*******************************************************************************/
#include "boost/python.hpp"
namespace bp = boost::python;
void export_ids();
void export_maps();
void export_triple_store();
void export_objects();
BOOST_PYTHON_MODULE(_rdf) {
bp::object package = bp::scope();
package.attr("__path__") = "_rdf";
export_ids();
export_maps();
export_triple_store();
export_objects();
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.