mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
- enable building DLLs on Windows (#1861)
* - enable building DLLs on Windows * - export.h and test.h are now auto-generated by CMake
This commit is contained in:
committed by
Greg Landrum
parent
c8ad225657
commit
c08ea49bda
@@ -645,13 +645,13 @@ std::map<T, boost::shared_ptr<ROMol>> getMolFragsWithQuery(
|
||||
}
|
||||
return res;
|
||||
}
|
||||
template std::map<std::string, boost::shared_ptr<ROMol>> getMolFragsWithQuery(
|
||||
template RDKIT_GRAPHMOL_EXPORT std::map<std::string, boost::shared_ptr<ROMol>> getMolFragsWithQuery(
|
||||
const ROMol &mol, std::string (*query)(const ROMol &, const Atom *),
|
||||
bool sanitizeFrags, const std::vector<std::string> *, bool);
|
||||
template std::map<int, boost::shared_ptr<ROMol>> getMolFragsWithQuery(
|
||||
template RDKIT_GRAPHMOL_EXPORT std::map<int, boost::shared_ptr<ROMol>> getMolFragsWithQuery(
|
||||
const ROMol &mol, int (*query)(const ROMol &, const Atom *),
|
||||
bool sanitizeFrags, const std::vector<int> *, bool);
|
||||
template std::map<unsigned int, boost::shared_ptr<ROMol>> getMolFragsWithQuery(
|
||||
template RDKIT_GRAPHMOL_EXPORT std::map<unsigned int, boost::shared_ptr<ROMol>> getMolFragsWithQuery(
|
||||
const ROMol &mol, unsigned int (*query)(const ROMol &, const Atom *),
|
||||
bool sanitizeFrags, const std::vector<unsigned int> *, bool);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user