Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Elmo-Terminal by
Commands/SetVariableCmd.h
- Committer:
- WGorniak
- Date:
- 2015-10-22
- Revision:
- 12:26045241f50f
- Parent:
- 2:8d8295a51f68
File content as of revision 12:26045241f50f:
#ifndef _SETVARIABLECMD_H_ #define _SETVARIABLECMD_H_ #include "Cmd.h" class Settings; class SetVariableCmd : public Cmd { public: SetVariableCmd(Settings* settings); virtual ~SetVariableCmd(); static string cmd(); static string desc(); virtual bool execute(list<string> args); virtual string getResponse(void); private: Settings* settings_; }; #endif // SETVARIABLECMD_H_