source: dev/trunk/abdev/BasicCompiler_Common/include/CodeGenerator.h@ 184

Last change on this file since 184 was 184, checked in by dai_9181, 17 years ago
File size: 191 bytes
Line 
1#pragma once
2
3#include <DataTable.h>
4
5void ReallocNativeCodeBuffer();
6
7class NativeCode
8{
9 DataTable dataTable;
10public:
11 DataTable &GetDataTable()
12 {
13 return dataTable;
14 }
15};
Note: See TracBrowser for help on using the repository browser.