- File:
-
- 1 edited
-
src/UIElements/TextUI/Query/BoxTextQuery.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/TextUI/Query/BoxTextQuery.cpp
r8df74d rd754bb 22 22 #include <iostream> 23 23 24 #include "TextUI/ TextDialog.hpp"24 #include "TextUI/Query/TextQuery.hpp" 25 25 26 26 #include "Helpers/Log.hpp" … … 37 37 38 38 bool TextDialog::BoxTextQuery::handle() { 39 Log() << Verbose(0)<< getTitle();39 std::cout << getTitle(); 40 40 41 41 double temp[6]; 42 std::cout << getDescription() << " - "; 42 43 std::string coords[6] = {"xx","yx","yy", "zx", "zy", "zz"}; 43 44 for (int i=0;i<6;i++) { 44 Log() << Verbose(0)<< coords[i] << ": ";45 cin >> temp[i];45 std::cout << coords[i] << ": "; 46 std::cin >> temp[i]; 46 47 } 47 48 Matrix M;
Note:
See TracChangeset
for help on using the changeset viewer.
