Changes in src/UIElements/Dialog.hpp [84c494:94d131]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Dialog.hpp
r84c494 r94d131 14 14 15 15 class atom; 16 class Box;17 16 class element; 18 17 class molecule; … … 32 31 virtual void queryAtom(const char*,atom**,std::string = "")=0; 33 32 virtual void queryMolecule(const char*,molecule**, std::string = "")=0; 34 virtual void queryVector(const char*,Vector *, bool, std::string = "")=0;35 virtual void queryBox(const char*, Box*, std::string = "")=0;33 virtual void queryVector(const char*,Vector *,const double *const,bool, std::string = "")=0; 34 virtual void queryBox(const char*,double ** const, std::string = "")=0; 36 35 virtual void queryElement(const char*, std::vector<element *> *, std::string = "")=0; 37 36 … … 149 148 class VectorQuery : public Query { 150 149 public: 151 VectorQuery(std::string title,Vector *_target, bool _check, std::string _description = "");150 VectorQuery(std::string title,Vector *_target,const double *const _cellSize,bool _check, std::string _description = ""); 152 151 virtual ~VectorQuery(); 153 152 virtual bool handle()=0; … … 155 154 protected: 156 155 Vector *tmp; 156 const double *const cellSize; 157 157 bool check; 158 158 private: … … 162 162 class BoxQuery : public Query { 163 163 public: 164 BoxQuery(std::string title, Box *_cellSize, std::string _description = "");164 BoxQuery(std::string title,double ** const _cellSize, std::string _description = ""); 165 165 virtual ~BoxQuery(); 166 166 virtual bool handle()=0; 167 167 virtual void setResult(); 168 168 protected: 169 double *tmp;169 double *tmp; 170 170 private: 171 Box*target;171 double **target; 172 172 }; 173 173
Note:
See TracChangeset
for help on using the changeset viewer.