|
Last change
on this file since 98a2987 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
|
| Line | |
|---|
| 1 | #ifndef ATOMIDDESCRIPTOR_IMPL_HPP
|
|---|
| 2 | #define ATOMIDDESCRIPTOR_IMPL_HPP
|
|---|
| 3 |
|
|---|
| 4 | #include "Descriptors/AtomDescriptor_impl.hpp"
|
|---|
| 5 |
|
|---|
| 6 | class AtomIdDescriptor_impl : public AtomDescriptor_impl
|
|---|
| 7 | {
|
|---|
| 8 | public:
|
|---|
| 9 | AtomIdDescriptor_impl(atomId_t _id);
|
|---|
| 10 | virtual ~AtomIdDescriptor_impl();
|
|---|
| 11 |
|
|---|
| 12 | bool predicate(std::pair<atomId_t,atom*> atom);
|
|---|
| 13 |
|
|---|
| 14 | protected:
|
|---|
| 15 | virtual atom *find();
|
|---|
| 16 | virtual std::vector<atom*> findAll();
|
|---|
| 17 | private:
|
|---|
| 18 | atomId_t id;
|
|---|
| 19 | };
|
|---|
| 20 |
|
|---|
| 21 | #endif //ATOMIDDESCRIPTOR_IMPL_HPP
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.