retdec
header_file.h
Go to the documentation of this file.
1 
7 #ifndef RETDEC_CTYPES_HEADER_FILE_H
8 #define RETDEC_CTYPES_HEADER_FILE_H
9 
10 #include <string>
11 
12 namespace retdec {
13 namespace ctypes {
14 
19 {
20  public:
21  HeaderFile() = default;
22  explicit HeaderFile(const std::string &path);
23 
24  std::string getPath() const;
25  std::string getName() const;
26 
27  private:
29  std::string path;
30 };
31 
32 } // namespace ctypes
33 } // namespace retdec
34 
35 #endif
A representation of C header file.
Definition: header_file.h:19
std::string path
Path to header file.
Definition: header_file.h:29
std::string getPath() const
Returns path to the header file.
Definition: header_file.cpp:21
std::string getName() const
Returns header file name.
Definition: header_file.cpp:29
Definition: archive_wrapper.h:19