Changeset b787af for molecuilder/src/UIElements/Dialog.hpp
- Timestamp:
- Mar 25, 2010, 1:01:35 PM (15 years ago)
- Children:
- cbc639
- Parents:
- eb129c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/UIElements/Dialog.hpp
reb129c rb787af 28 28 virtual void queryMolecule(const char*,molecule**,MoleculeListClass*)=0; 29 29 virtual void queryVector(const char*,Vector *,const double *const,bool)=0; 30 virtual void queryElement(const char*, element **)=0;30 virtual void queryElement(const char*,const element **)=0; 31 31 32 32 virtual bool display(); … … 123 123 class ElementQuery : public Query { 124 124 public: 125 ElementQuery(std::string title, element**_target);125 ElementQuery(std::string title, const element**_target); 126 126 virtual ~ElementQuery(); 127 127 virtual bool handle()=0; 128 128 virtual void setResult(); 129 129 protected: 130 element *tmp;130 const element *tmp; 131 131 private: 132 element **target;132 const element **target; 133 133 }; 134 134
Note:
See TracChangeset
for help on using the changeset viewer.