Logo
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
filedel.hh
Go to the documentation of this file.
1 #pragma once
2 
3 #include "message.hh"
4 
5 namespace eclipse {
6 namespace messages {
7 
8 struct FileDel: public Message {
9  FileDel() = default;
10  ~FileDel() = default;
11 
12  std::string get_type() const override;
13 
14  std::string name;
15 };
16 
17 }
18 }
Definition: filedel.hh:8
Definition: message.hh:15
std::string name
Definition: filedel.hh:14
std::string get_type() const override
Definition: filedel.cc:5