source: molecuilder/src/Descriptors/AtomIdDescriptor_impl.hpp@ 0d111b

Last change on this file since 0d111b was 98a2987, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Added -Wall flag and fixed several small hickups

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