20 lines
430 B
C++
20 lines
430 B
C++
|
// Copyright 2023 xensik. All rights reserved.
|
||
|
//
|
||
|
// Use of this source code is governed by a GNU GPLv3 license
|
||
|
// that can be found in the LICENSE file.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
namespace xsk::gsc
|
||
|
{
|
||
|
|
||
|
struct directive
|
||
|
{
|
||
|
enum kind : u8 { IF, IFDEF, IFNDEF, ELIF, ELIFDEF, ELIFNDEF, ELSE, ENDIF, DEFINE, UNDEF, PRAGMA, WARNING, ERROR, LINE, INCLUDE, INLINE, INSERT, USINGTREE };
|
||
|
|
||
|
kind type;
|
||
|
bool skip;
|
||
|
};
|
||
|
|
||
|
} // namespace xsk::gsc
|