Files
rdkit/Code/GraphMol/MolStandardize/AcidBaseCatalog/AcidBaseCatalogEntry.h
Greg Landrum ec366c1ab7 Dev/pvs studio cleanups2 (#2877)
* a round of cleanups courtesy of PVS studio

* add a test to make sure that a warning is a false alarm

* bug fix

* Fix a UFF bug

* more PVS studio cleanups

* next round of PVS studio cleanups

* completely remove the chances for that bug

* changes in response to review

* add an additional test
+ a bit of reformatting that snuck in
2020-01-22 15:10:58 +01:00

57 lines
1.5 KiB
C++

//
// Copyright (C) 2018 Susan H. Leung
//
// @@ 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 <RDGeneral/export.h>
#ifndef __RD_ACIDBASE_CATALOG_ENTRY_H__
#define __RD_ACIDBASE_CATALOG_ENTRY_H__
#include <Catalogs/CatalogEntry.h>
#include <GraphMol/Subgraphs/Subgraphs.h>
#include <GraphMol/Substruct/SubstructMatch.h>
#include <GraphMol/ChemReactions/Reaction.h>
#include "AcidBaseCatalogParams.h"
#include <GraphMol/RDKitBase.h>
namespace RDKit {
namespace MolStandardize {
class RDKIT_MOLSTANDARDIZE_EXPORT AcidBaseCatalogEntry
: public RDCatalog::CatalogEntry {
public:
AcidBaseCatalogEntry() {
d_descrip = "";
dp_props = new Dict();
setBitId(-1);
}
~AcidBaseCatalogEntry() override {
delete dp_props;
dp_props = nullptr;
}
// TODO Catalog.h requires a getOrder function
unsigned int getOrder() const { return 0; } // dp_mol->getNumBonds(); }
void toStream(std::ostream &ss) const override;
std::string Serialize() const override;
void initFromStream(std::istream &ss) override;
void initFromString(const std::string &text) override;
private:
std::shared_ptr<std::pair<ROMOL_SPTR, ROMOL_SPTR>> dp_pair;
Dict *dp_props;
std::string d_descrip;
}; // class AcidBaseCatalogEntry
} // namespace MolStandardize
} // namespace RDKit
#endif