mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
26 lines
644 B
C++
26 lines
644 B
C++
//===-- SystemInitializer.h -------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLDB_INITIALIZATION_SYSTEM_INITIALIZER_H
|
|
#define LLDB_INITIALIZATION_SYSTEM_INITIALIZER_H
|
|
|
|
namespace lldb_private
|
|
{
|
|
class SystemInitializer
|
|
{
|
|
public:
|
|
SystemInitializer();
|
|
virtual ~SystemInitializer();
|
|
|
|
virtual void Initialize() = 0;
|
|
virtual void Terminate() = 0;
|
|
};
|
|
}
|
|
|
|
#endif
|