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.
Dependencies: SX1272lib mbed-src
Commands/GetVariableCmd.h
- Committer:
- WGorniak
- Date:
- 2015-10-01
- Revision:
- 2:8d8295a51f68
File content as of revision 2:8d8295a51f68:
#ifndef _GETVARIABLECMD_H_ #define _GETVARIABLECMD_H_ #include "Cmd.h" class Settings; class GetVariableCmd : public Cmd { public: GetVariableCmd(Settings* settings); virtual ~GetVariableCmd(); static string cmd(); static string desc(); virtual bool execute(list<string> args); virtual string getResponse(void); private: Settings* settings_; }; #endif // _GETVARIABLECMD_H_