1 //===-- PluginInterface.h ---------------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #ifndef liblldb_PluginInterface_h_ 11 #define liblldb_PluginInterface_h_ 12 13 #include "lldb/lldb-private.h" 14 15 namespace lldb_private { 16 17 class PluginInterface { 18 public: ~PluginInterface()19 virtual ~PluginInterface() {} 20 21 virtual ConstString GetPluginName() = 0; 22 23 virtual uint32_t GetPluginVersion() = 0; 24 }; 25 26 } // namespace lldb_private 27 28 #endif // liblldb_PluginInterface_h_ 29