retdec
pe_coff_section.h
Go to the documentation of this file.
1 
7 #ifndef RETDEC_FILEFORMAT_TYPES_SEC_SEG_PE_COFF_SECTION_H
8 #define RETDEC_FILEFORMAT_TYPES_SEC_SEG_PE_COFF_SECTION_H
9 
11 
12 namespace retdec {
13 namespace fileformat {
14 
18 class PeCoffSection : public Section
19 {
20  private:
21  unsigned long long peCoffFlags;
22  public:
23  PeCoffSection();
24 
27  unsigned long long getPeCoffFlags() const;
29 
32  void setPeCoffFlags(unsigned long long sPeCoffFlags);
34 };
35 
36 } // namespace fileformat
37 } // namespace retdec
38 
39 #endif
Definition: pe_coff_section.h:19
unsigned long long getPeCoffFlags() const
Definition: pe_coff_section.cpp:24
unsigned long long peCoffFlags
section flags
Definition: pe_coff_section.h:21
void setPeCoffFlags(unsigned long long sPeCoffFlags)
Definition: pe_coff_section.cpp:33
PeCoffSection()
Definition: pe_coff_section.cpp:15
Definition: section.h:19
Definition: archive_wrapper.h:19
Class for file section.