source:
dev/trunk/jenga/include/smoothie/Class.h@
170
| Last change on this file since 170 was 170, checked in by , 19 years ago | |
|---|---|
| File size: 245 bytes | |
| Line | |
|---|---|
| 1 | #pragma once |
| 2 | |
| 3 | #include "Prototype.h" |
| 4 | |
| 5 | class CClass : public Prototype |
| 6 | { |
| 7 | public: |
| 8 | //メンバの参照方法 |
| 9 | enum RefType{ |
| 10 | Non = 0, // no reference member |
| 11 | Dot, // obj.member |
| 12 | Pointer, // obj->member |
| 13 | }; |
| 14 | }; |
| 15 | |
| 16 | class Classes |
| 17 | { |
| 18 | }; |
Note:
See TracBrowser
for help on using the repository browser.
