blob: e6460a2cdd393c3ac4645f6a070daf0462e7f5c1 [file] [log] [blame]
Pavel Labathfa3fa5b2018-05-24 12:44:18 +00001//===-- SystemInitializerLLGS.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 LLDB_SYSTEMINITIALIZERLLGS_H
11#define LLDB_SYSTEMINITIALIZERLLGS_H
12
13#include "lldb/Initialization/SystemInitializerCommon.h"
14
15class SystemInitializerLLGS : public lldb_private::SystemInitializerCommon {
16public:
17 void Initialize() override;
18 void Terminate() override;
19};
20
21#endif // LLDB_SYSTEMINITIALIZERLLGS_H