mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
12 lines
200 B
C++
12 lines
200 B
C++
//
|
|
// Copyright (C) 2003 Rational Discovery LLC
|
|
//
|
|
|
|
#include "mods.h"
|
|
|
|
namespace python = boost::python;
|
|
|
|
BOOST_PYTHON_MODULE(moda) {
|
|
python::class_<ClassA>("ClassA").def("Get4", &ClassA::get4);
|
|
}
|