blob: 61b5e1c8b406f38ad92278cce3fb5a46653a1f0f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
--- modelgen/mg_.h.orig 2013-04-24 03:24:21 UTC
+++ modelgen/mg_.h
@@ -108,6 +108,20 @@ class List_Base (public)
size_t size()const {return _list.size();}
};
/*--------------------------------------------------------------------------*/
+class C_Comment
+ :public Base
+{
+public:
+ void parse(CS& f);
+};
+/*--------------------------------------------------------------------------*/
+class Cxx_Comment
+ :public Base
+{
+public:
+ void parse(CS& f);
+};
+/*--------------------------------------------------------------------------*/
/* A "Collection" differs from a "List" in how it is parsed.
* Each parse of a "Collection" created one more object and stores
* it in the Collection. The size of the Collection therefore grows by 1.
@@ -198,20 +212,6 @@ class Collection (public)
f << (**i);
}
}
-};
-/*--------------------------------------------------------------------------*/
-class C_Comment
- :public Base
-{
-public:
- void parse(CS& f);
-};
-/*--------------------------------------------------------------------------*/
-class Cxx_Comment
- :public Base
-{
-public:
- void parse(CS& f);
};
/*--------------------------------------------------------------------------*/
class Key
|