- Timestamp:
- Aug 30, 2010, 10:09:08 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/consolecommands3/src/libraries/core/command/ConsoleCommand.h
r7270 r7272 33 33 34 34 #include <stack> 35 #include <vector> 35 36 #include <boost/preprocessor/cat.hpp> 36 37 #include <boost/preprocessor/facilities/expand.hpp> … … 98 99 ExecutorPtr executor_; 99 100 FunctorPtr functor_; 101 std::vector<void*> objectStack_; 100 102 }; 101 103 … … 317 319 ExecutorPtr executor_; 318 320 std::stack<Command> commandStack_; 319 std:: stack<void*> objectStack_;321 std::vector<void*> objectStack_; 320 322 321 323 ArgumentCompleter* argumentCompleter_[5];
Note: See TracChangeset
for help on using the changeset viewer.