Files
BlitzLLVM/code_compiler/source/ast/ast.hpp
T

13 lines
273 B
C++
Raw Normal View History

2024-06-25 18:59:15 +02:00
/// AUTOGENERATED COPYRIGHT HEADER START
// Copyright (C) 2017-2024 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
// AUTOGENERATED COPYRIGHT HEADER END
2024-06-06 13:37:13 +02:00
#pragma once
2024-06-06 14:04:34 +02:00
namespace blitz {
2024-06-25 18:59:15 +02:00
namespace ast {
class expression {
2024-06-06 13:37:13 +02:00
public:
2024-06-25 18:59:15 +02:00
virtual ~expression() {};
2024-06-06 13:37:13 +02:00
};
}
}