mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
* support generalized substructure search in the SubstructLibrary * simplify namespaces * support the new functionality in the swig wrappers * update mac swig version in CI * ensure swig4 * switch mac_java ci builds to conda-forge * change in response to review * add copy ctor to extendedquerymol * Back to the way it was
17 lines
461 B
OpenEdge ABL
17 lines
461 B
OpenEdge ABL
|
|
%{
|
|
#include <GraphMol/GeneralizedSubstruct/XQMol.h>
|
|
%}
|
|
// %include "std_unique_ptr.i"
|
|
// %unique_ptr(ExtendedQueryMol)
|
|
|
|
%ignore ExtendedQueryMol(std::unique_ptr<RWMol> mol);
|
|
%ignore ExtendedQueryMol(std::unique_ptr<MolBundle> mol);
|
|
%ignore ExtendedQueryMol(std::unique_ptr<TautomerQuery> mol);
|
|
%ignore ExtendedQueryMol(
|
|
std::unique_ptr<std::vector<std::unique_ptr<TautomerQuery>>> tqs);
|
|
%ignore xqmol;
|
|
|
|
%include "GraphMol/GeneralizedSubstruct/XQMol.h";
|
|
|