- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/UIElements/TextUI/Query/ElementsTextQuery.cpp ¶
rd754bb r8df74d 23 23 #include <boost/lexical_cast.hpp> 24 24 25 #include "TextUI/ Query/TextQuery.hpp"25 #include "TextUI/TextDialog.hpp" 26 26 27 27 #include "Helpers/Log.hpp" … … 45 45 std::string shorthand; 46 46 int Z=-1; 47 std::cout << getDescription() << ": ";47 Log() << Verbose(0) << getTitle(); 48 48 std::string line; 49 getline( std::cin,line);49 getline(cin,line); 50 50 // dissect by " " 51 51 std::string::iterator olditer = line.begin(); … … 61 61 }; 62 62 if(!temp && Z!=-1){ 63 std::cout << "Invalid Element" << shorthand << std::endl;63 Log() << Verbose(0) << "Invalid Element" << shorthand << endl; 64 64 break; 65 65 } … … 78 78 }; 79 79 if(!temp && Z!=-1) { 80 std::cout << "Invalid Element" << shorthand << std::endl;80 Log() << Verbose(0) << "Invalid Element" << shorthand << endl; 81 81 tmp.push_back(temp); 82 82 }
Note:
See TracChangeset
for help on using the changeset viewer.