retdec
elf_auxv_plain_getter.h
Go to the documentation of this file.
1 
7 #ifndef FILEINFO_FILE_PRESENTATION_GETTERS_ITERATIVE_GETTER_ITERATIVE_DISTRIBUTION_GETTER_ELF_AUXV_PLAIN_GETTER_H
8 #define FILEINFO_FILE_PRESENTATION_GETTERS_ITERATIVE_GETTER_ITERATIVE_DISTRIBUTION_GETTER_ELF_AUXV_PLAIN_GETTER_H
9 
11 
12 namespace retdec {
13 namespace fileinfo {
14 
19 {
20  protected:
21  virtual bool loadRecord(
22  std::size_t structIndex, std::size_t recIndex,
23  std::vector<std::string> &record) override;
24 
25  public:
27 
28  virtual std::size_t getBasicInfo(
29  std::size_t structIndex,
30  std::vector<std::string> &desc,
31  std::vector<std::string> &info) const override;
32 
33  virtual bool getFlagDescriptors(
34  std::size_t structIndex,
35  std::vector<std::string> &desc,
36  std::vector<std::string> &abbv) const override;
37 };
38 
39 } // namespace fileinfo
40 } // namespace retdec
41 
42 #endif
Definition: elf_auxv_plain_getter.h:19
ElfAuxVPlainGetter(FileInformation &fileInfo)
Definition: elf_auxv_plain_getter.cpp:29
virtual bool loadRecord(std::size_t structIndex, std::size_t recIndex, std::vector< std::string > &record) override
Definition: elf_auxv_plain_getter.cpp:75
virtual std::size_t getBasicInfo(std::size_t structIndex, std::vector< std::string > &desc, std::vector< std::string > &info) const override
Definition: elf_auxv_plain_getter.cpp:55
virtual bool getFlagDescriptors(std::size_t structIndex, std::vector< std::string > &desc, std::vector< std::string > &abbv) const override
Definition: elf_auxv_plain_getter.cpp:96
Definition: file_information.h:25
Definition: iterative_distribution_getter.h:22
Definition of IterativeDistributionGetter class.
Definition: archive_wrapper.h:19