Changes in src/UIElements/TextDialog.hpp [5605032:2ededc2]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/TextDialog.hpp
r5605032 r2ededc2 24 24 virtual void queryMolecule(const char*,molecule**,MoleculeListClass*); 25 25 virtual void queryVector(const char*,Vector *,const double * const,bool); 26 virtual void queryElement(const char*,const element **);27 26 28 27 protected: … … 31 30 public: 32 31 IntTextQuery(std::string title, int *_target); 33 virtual~IntTextQuery();32 ~IntTextQuery(); 34 33 virtual bool handle(); 35 34 }; … … 38 37 public: 39 38 DoubleTextQuery(std::string title, double *_target); 40 virtual~DoubleTextQuery();39 ~DoubleTextQuery(); 41 40 virtual bool handle(); 42 41 }; … … 45 44 public: 46 45 StringTextQuery(std::string title, std::string *_target); 47 virtual~StringTextQuery();46 ~StringTextQuery(); 48 47 virtual bool handle(); 49 48 }; … … 52 51 public: 53 52 MoleculeTextQuery(std::string title, molecule **_target, MoleculeListClass *_molecules); 54 virtual~MoleculeTextQuery();53 ~MoleculeTextQuery(); 55 54 virtual bool handle(); 56 55 }; … … 59 58 public: 60 59 VectorTextQuery(std::string title,Vector *_target,const double *const _cellSize,bool _check); 61 virtual ~VectorTextQuery(); 62 virtual bool handle(); 63 }; 64 65 class ElementTextQuery : public Dialog::ElementQuery { 66 public: 67 ElementTextQuery(std::string title, const element **_target); 68 virtual ~ElementTextQuery(); 60 ~VectorTextQuery(); 69 61 virtual bool handle(); 70 62 };
Note:
See TracChangeset
for help on using the changeset viewer.