source: dev/trunk/jenga/include/smoothie/Class.h@ 170

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

ベースを作成中...

File size: 245 bytes
Line 
1#pragma once
2
3#include "Prototype.h"
4
5class CClass : public Prototype
6{
7public:
8 //メンバの参照方法
9 enum RefType{
10 Non = 0, // no reference member
11 Dot, // obj.member
12 Pointer, // obj->member
13 };
14};
15
16class Classes
17{
18};
Note: See TracBrowser for help on using the repository browser.