- 412 名前:デフォルトの名無しさん mailto:sage [2012/05/22(火) 05:10:52.27 ]
- // ChildTemplate.h
class CHILD : :public ParentClass { // \ で繋ぐ必要も無いし // 行末コメントも使い放題 // ... // コンパイルエラーへの対処もしやすい }; // Childs.h #define CHILD ChildA #define ... include "ChildTemplate.h #define CHILD ChildB #define ... #include "ChildTemplate.h #define CHILD ChildC #define ... #include "ChildTemplate.h #define CHILD ChildD #define ... #include "ChildTemplate.h
|

|