retdec
header_plain_getter.h
Go to the documentation of this file.
1 
7 #ifndef FILEINFO_FILE_PRESENTATION_GETTERS_SIMPLE_GETTER_HEADER_PLAIN_GETTER_H
8 #define FILEINFO_FILE_PRESENTATION_GETTERS_SIMPLE_GETTER_HEADER_PLAIN_GETTER_H
9 
11 
12 namespace retdec {
13 namespace fileinfo {
14 
19 {
20  public:
22 
23  virtual std::size_t loadInformation(std::vector<std::string> &desc, std::vector<std::string> &info) const override;
24  void getFileFlags(std::string &title, std::string &flags, std::vector<std::string> &desc, std::vector<std::string> &abbv) const;
25  void getDllFlags(std::string &title, std::string &flags, std::vector<std::string> &desc, std::vector<std::string> &abbv) const;
26 };
27 
28 } // namespace fileinfo
29 } // namespace retdec
30 
31 #endif
Definition: file_information.h:25
Definition: header_plain_getter.h:19
void getFileFlags(std::string &title, std::string &flags, std::vector< std::string > &desc, std::vector< std::string > &abbv) const
Definition: header_plain_getter.cpp:99
virtual std::size_t loadInformation(std::vector< std::string > &desc, std::vector< std::string > &info) const override
Definition: header_plain_getter.cpp:24
HeaderPlainGetter(FileInformation &fileInfo)
Definition: header_plain_getter.cpp:19
void getDllFlags(std::string &title, std::string &flags, std::vector< std::string > &desc, std::vector< std::string > &abbv) const
Definition: header_plain_getter.cpp:115
Definition: simple_getter.h:19
Definition: archive_wrapper.h:19
Definition of SimpleGetter class.