diff options
Diffstat (limited to 'source/Plugins/SymbolVendor/ELF/SymbolVendorELF.h')
-rw-r--r-- | source/Plugins/SymbolVendor/ELF/SymbolVendorELF.h | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.h b/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.h index acd62b6cc3ab7..425ff9efc59c1 100644 --- a/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.h +++ b/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.h @@ -1,4 +1,4 @@ -//===-- SymbolVendorELF.h ------------------------------------*- C++ -*-===// +//===-- SymbolVendorELF.h ---------------------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -10,6 +10,10 @@ #ifndef liblldb_SymbolVendorELF_h_ #define liblldb_SymbolVendorELF_h_ +// C Includes +// C++ Includes +// Other libraries and framework includes +// Project includes #include "lldb/lldb-private.h" #include "lldb/Symbol/SymbolVendor.h" @@ -17,6 +21,13 @@ class SymbolVendorELF : public lldb_private::SymbolVendor { public: //------------------------------------------------------------------ + // Constructors and Destructors + //------------------------------------------------------------------ + SymbolVendorELF (const lldb::ModuleSP &module_sp); + + ~SymbolVendorELF() override; + + //------------------------------------------------------------------ // Static Functions //------------------------------------------------------------------ static void @@ -35,24 +46,16 @@ public: CreateInstance (const lldb::ModuleSP &module_sp, lldb_private::Stream *feedback_strm); //------------------------------------------------------------------ - // Constructors and Destructors - //------------------------------------------------------------------ - SymbolVendorELF (const lldb::ModuleSP &module_sp); - - virtual - ~SymbolVendorELF(); - - //------------------------------------------------------------------ // PluginInterface protocol //------------------------------------------------------------------ - virtual lldb_private::ConstString - GetPluginName(); + lldb_private::ConstString + GetPluginName() override; - virtual uint32_t - GetPluginVersion(); + uint32_t + GetPluginVersion() override; private: DISALLOW_COPY_AND_ASSIGN (SymbolVendorELF); }; -#endif // liblldb_SymbolVendorELF_h_ +#endif // liblldb_SymbolVendorELF_h_ |