/* ****************************** * Object Oriented Programming in C * * Author: Laurent Deniau, Laurent.Deniau@cern.ch * * For more information, please see the paper: * http://home.cern.ch/ldeniau/html/oopc/oopc.html * ****************************** */ /*--------------------------------------*/ /* Specialized array implementation */ /*--------------------------------------*/ /* integer memory block */ #define gTypePrefix i #define gType1 int #include #undef gTypePrefix #undef gType1 /* double memory block */ #define gTypePrefix d #define gType1 double #include #undef gTypePrefix #undef gType1