source: dev/BasicCompiler_Common/include/House.h@ 87

Last change on this file since 87 was 87, checked in by dai_9181, 17 years ago

House::Metaを追加。
Source.h/Source.cppを追加(実装はこれから)。

File size: 284 bytes
Line 
1#pragma once
2
3#include "Source.h"
4#include "../TypeDef.h"
5
6class House{
7public:
8
9 class Lexical{
10 public:
11 static BasicSource source;
12 };
13
14 class Meta{
15 public:
16 // TypeDef
17 static TypeDefCollection typeDefs;
18 static vector<ProcPointer *> procPointers;
19 };
20};
Note: See TracBrowser for help on using the repository browser.