source: src/Descriptors/MoleculeIdDescriptor_impl.hpp@ 97dff0

Last change on this file since 97dff0 was 56f73b, checked in by Frederik Heber <heber@…>, 14 years ago

Added config.h also to all header files, code check test ascertain this in the future.

  • as we want to use config.h to pass stuff such as MEMDEBUG, NDEBUG, LOG_OBSERVER, we have to make sure that it is present in each and every file.
  • split up CodeChecks/testsuite.at: each test has its own .at file.
  • Property mode set to 100644
File size: 579 bytes
RevLine 
[57adc7]1#ifndef MOLECULEIDDESCRIPTOR_IMPL_HPP
2#define MOLECULEIDDESCRIPTOR_IMPL_HPP
3
[56f73b]4// include config.h
5#ifdef HAVE_CONFIG_H
6#include <config.h>
7#endif
8
9
[57adc7]10#include "Descriptors/MoleculeDescriptor_impl.hpp"
11
12class MoleculeIdDescriptor_impl : public MoleculeDescriptor_impl
13{
14public:
15 MoleculeIdDescriptor_impl(moleculeId_t _id);
16 virtual ~MoleculeIdDescriptor_impl();
17
18 bool predicate(std::pair<moleculeId_t,molecule*> molecule);
19
20protected:
21 virtual molecule *find();
22 virtual std::vector<molecule*> findAll();
23private:
24 moleculeId_t id;
25};
26
27#endif //MOLECULEIDDESCRIPTOR_IMPL_HPP
Note: See TracBrowser for help on using the repository browser.