- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/CommandLineUI/Query/StringsCommandLineQuery.cpp
re4afb4 r8df74d 22 22 #include "CommandLineUI/CommandLineDialog.hpp" 23 23 24 #include "CommandLineUI/CommandLineParser.hpp"25 24 #include "Helpers/Log.hpp" 26 25 #include "Helpers/Verbose.hpp" 26 #include "CommandLineParser.hpp" 27 27 28 28 CommandLineDialog::StringsCommandLineQuery::StringsCommandLineQuery(string title, string _description) : … … 34 34 bool CommandLineDialog::StringsCommandLineQuery::handle() { 35 35 if (CommandLineParser::getInstance().vm.count(getTitle())) { 36 tmp = CommandLineParser::getInstance().vm[getTitle()].as< std::vector<std::string> >();36 tmp = CommandLineParser::getInstance().vm[getTitle()].as< vector<string> >(); 37 37 return true; 38 38 } else {
Note:
See TracChangeset
for help on using the changeset viewer.