Changes in src/UIElements/TextDialog.hpp [7aa000:2ededc2]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/TextDialog.hpp
r7aa000 r2ededc2 21 21 virtual void queryInt(const char *, int *); 22 22 virtual void queryString(const char*, std::string *); 23 virtual void queryDouble(const char*, double*); 23 24 virtual void queryMolecule(const char*,molecule**,MoleculeListClass*); 25 virtual void queryVector(const char*,Vector *,const double * const,bool); 24 26 25 27 protected: … … 29 31 IntTextQuery(std::string title, int *_target); 30 32 ~IntTextQuery(); 33 virtual bool handle(); 34 }; 35 36 class DoubleTextQuery : public Dialog::DoubleQuery { 37 public: 38 DoubleTextQuery(std::string title, double *_target); 39 ~DoubleTextQuery(); 31 40 virtual bool handle(); 32 41 }; … … 45 54 virtual bool handle(); 46 55 }; 56 57 class VectorTextQuery : public Dialog::VectorQuery { 58 public: 59 VectorTextQuery(std::string title,Vector *_target,const double *const _cellSize,bool _check); 60 ~VectorTextQuery(); 61 virtual bool handle(); 62 }; 47 63 }; 48 64
Note:
See TracChangeset
for help on using the changeset viewer.