using deletei nstead
This commit is contained in:
parent
20c261514b
commit
2b1029916b
@ -9,9 +9,10 @@
|
|||||||
* @author Jakob Meier
|
* @author Jakob Meier
|
||||||
*/
|
*/
|
||||||
class FileSystemMessage {
|
class FileSystemMessage {
|
||||||
private:
|
|
||||||
FileSystemMessage(); //A private ctor inhibits instantiation
|
|
||||||
public:
|
public:
|
||||||
|
// Instantiation forbidden
|
||||||
|
FileSystemMessage() = delete;
|
||||||
|
|
||||||
static const uint8_t MESSAGE_ID = messagetypes::FILE_SYSTEM_MESSAGE;
|
static const uint8_t MESSAGE_ID = messagetypes::FILE_SYSTEM_MESSAGE;
|
||||||
static const Command_t CREATE_FILE = MAKE_COMMAND_ID(1);
|
static const Command_t CREATE_FILE = MAKE_COMMAND_ID(1);
|
||||||
static const Command_t DELETE_FILE = MAKE_COMMAND_ID(2);
|
static const Command_t DELETE_FILE = MAKE_COMMAND_ID(2);
|
||||||
|
Loading…
Reference in New Issue
Block a user