Path: blob/main/cad/gnucap/files/patch-modelgen__mg_.h
16461 views
--- modelgen/mg_.h.orig 2013-04-24 03:24:21 UTC1+++ modelgen/mg_.h2@@ -108,6 +108,20 @@ class List_Base (public)3size_t size()const {return _list.size();}4};5/*--------------------------------------------------------------------------*/6+class C_Comment7+ :public Base8+{9+public:10+ void parse(CS& f);11+};12+/*--------------------------------------------------------------------------*/13+class Cxx_Comment14+ :public Base15+{16+public:17+ void parse(CS& f);18+};19+/*--------------------------------------------------------------------------*/20/* A "Collection" differs from a "List" in how it is parsed.21* Each parse of a "Collection" created one more object and stores22* it in the Collection. The size of the Collection therefore grows by 1.23@@ -198,20 +212,6 @@ class Collection (public)24f << (**i);25}26}27-};28-/*--------------------------------------------------------------------------*/29-class C_Comment30- :public Base31-{32-public:33- void parse(CS& f);34-};35-/*--------------------------------------------------------------------------*/36-class Cxx_Comment37- :public Base38-{39-public:40- void parse(CS& f);41};42/*--------------------------------------------------------------------------*/43class Key444546