Files
rdkit/Code/JavaWrappers/RGroupDecomposition.i
Greg Landrum 89439f5520 Expose RGroupDecomposition to SWIG (#2345)
* change to make the SWig builds work on windows

* add the wrapper. Still needs tests

* first rgd java wrapper test, does not pass

* get static builds working on windows
2019-03-13 08:23:23 -04:00

24 lines
789 B
OpenEdge ABL

/*
*
* Copyright (c) 2019, Greg Landrum
* All rights reserved.
*
* This file is part of the RDKit.
* The contents are covered by the terms of the BSD license
* which is included in the file license.txt, found at the root
* of the RDKit source tree.
*
*/
%{
#include <GraphMol/RGroupDecomposition/RGroupDecomp.h>
%}
%template(SparseIntVect64) RDKit::SparseIntVect<boost::int64_t>;
%template(StringMolMap) std::map<std::string, boost::shared_ptr<RDKit::ROMol>>;
%template(ROMol_Vect) std::vector<boost::shared_ptr<RDKit::ROMol>>;
%template(StringMolMap_Vect) std::vector<std::map<std::string, boost::shared_ptr<RDKit::ROMol>>>;
%template(StringROMol_VectMap) std::map<std::string,std::vector<boost::shared_ptr<RDKit::ROMol>>>;
%include <GraphMol/RGroupDecomposition/RGroupDecomp.h>