Changeset 3896fc for molecuilder/src/UIElements/Dialog.hpp
- Timestamp:
- Jan 13, 2010, 11:05:02 AM (16 years ago)
- Children:
- 1630ce
- Parents:
- f89c1c
- git-author:
- Tillmann Crueger <crueger@…> (01/13/10 10:51:30)
- git-committer:
- Tillmann Crueger <crueger@…> (01/13/10 11:05:02)
- File:
-
- 1 edited
-
molecuilder/src/UIElements/Dialog.hpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/UIElements/Dialog.hpp
rf89c1c r3896fc 13 13 14 14 class MoleculeListClass; 15 class Molecule;15 class molecule; 16 16 17 17 class Dialog … … 23 23 virtual void queryInt(const char *, int *)=0; 24 24 virtual void queryString(const char*, std::string *)=0; 25 // virtual void queryMolecule(const char*,MoleculeListClass*,Molecule*)=0;25 virtual void queryMolecule(const char*,molecule**,MoleculeListClass*)=0; 26 26 27 27 virtual bool display(); … … 76 76 }; 77 77 78 class MoleculeQuery : public Query { 79 public: 80 MoleculeQuery(std::string title, molecule **_target, MoleculeListClass *_molecules); 81 ~MoleculeQuery(); 82 virtual bool handle()=0; 83 virtual void setResult(); 84 protected: 85 molecule *tmp; 86 MoleculeListClass *molecules; 87 private: 88 molecule **target; 89 }; 90 78 91 void registerQuery(Query* query); 79 92
Note:
See TracChangeset
for help on using the changeset viewer.
