MicroLabo / Mbed OS mbed-Dot-AT-Firmware

Dependencies:   MTS-Serial libmDot-mbed5

Fork of Dot-AT-Firmware by MultiTech

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CmdDeviceClass.h Source File

CmdDeviceClass.h

00001 /*
00002  * CmdDeviceClass.h
00003  *
00004  *  Created on: Nov 9, 2015
00005  *      Author: jreiss
00006  */
00007 
00008 #ifndef CMDDEVICECLASS_H_
00009 #define CMDDEVICECLASS_H_
00010 
00011 #include "Command.h"
00012 
00013 class CmdDeviceClass: public Command {
00014     public:
00015         CmdDeviceClass();
00016         virtual ~CmdDeviceClass();
00017         static uint32_t action(std::vector<std::string> args);
00018         static bool verify(std::vector<std::string> args);
00019 
00020     private:
00021         
00022 
00023 };
00024 
00025 #endif /* CMDDEVICECLASS_H_ */