1 /* 2 * Copyright 2012-2014, Rene Gollent, rene@gollent.com. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef CLI_DUMP_STRING_COMMAND_H 6 #define CLI_DUMP_STRING_COMMAND_H 7 8 9 #include "CliCommand.h" 10 11 12 class SourceLanguage; 13 14 15 class CliDumpStringCommand : public CliCommand { 16 public: 17 CliDumpStringCommand(); 18 virtual ~CliDumpStringCommand(); 19 20 virtual void Execute(int argc, const char* const* argv, 21 CliContext& context); 22 23 private: 24 SourceLanguage* fLanguage; 25 }; 26 27 28 #endif // CLI_DUMP_STRING_COMMAND_H 29