source: molecuilder/src/Descriptors/AtomIdDescriptor_impl.hpp@ 33bc66

Last change on this file since 33bc66 was 33bc66, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Changed the type of AtomIds and MoleculeIds to an opaque type

  • Property mode set to 100644
File size: 444 bytes
Line 
1#ifndef ATOMIDDESCRIPTOR_IMPL_HPP
2#define ATOMIDDESCRIPTOR_IMPL_HPP
3
4#include "Descriptors/AtomDescriptor_impl.hpp"
5
6class AtomIdDescriptor_impl : public AtomDescriptor_impl
7{
8public:
9 AtomIdDescriptor_impl(atomId_t _id);
10 virtual ~AtomIdDescriptor_impl();
11
12 bool predicate(std::pair<int,atom*> atom);
13
14protected:
15 virtual atom *find();
16 virtual std::vector<atom*> findAll();
17private:
18 atomId_t id;
19};
20
21#endif //ATOMIDDESCRIPTOR_IMPL_HPP
Note: See TracBrowser for help on using the repository browser.