Logo
fileexist.hh
Go to the documentation of this file.
1 #pragma once
2 #include "message.hh"
3 
4 namespace eclipse {
5 namespace messages {
6 
7 struct FileExist: public Message {
8  std::string get_type() const override;
9 
10  std::string name;
11 };
12 
13 }
14 }
15 
Definition: block_node.cc:12
Definition: fileexist.hh:7
std::string get_type() const override
Definition: fileexist.cc:5
std::string name
Definition: fileexist.hh:10
Definition: message.hh:15