Changes in src/UIElements/Dialog.cpp [8df74d:e4afb4]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Dialog.cpp
r8df74d re4afb4 126 126 } 127 127 128 template <> void Dialog::query< atom *>(const char *token, std::string description)128 template <> void Dialog::query<const atom *>(const char *token, std::string description) 129 129 { 130 130 queryAtom(token, description); 131 131 } 132 132 133 template <> void Dialog::query< std::vector< atom *> >(const char *token, std::string description)133 template <> void Dialog::query< std::vector<const atom *> >(const char *token, std::string description) 134 134 { 135 135 queryAtoms(token, description); 136 136 } 137 137 138 template <> void Dialog::query< molecule *>(const char *token, std::string description)138 template <> void Dialog::query<const molecule *>(const char *token, std::string description) 139 139 { 140 140 queryMolecule(token, description); 141 141 } 142 142 143 template <> void Dialog::query< std::vector< molecule *> >(const char *token, std::string description)143 template <> void Dialog::query< std::vector<const molecule *> >(const char *token, std::string description) 144 144 { 145 145 queryMolecules(token, description);
Note:
See TracChangeset
for help on using the changeset viewer.