Abraxas/ECS C++ Home Table of Contents
templateclass list ;
class Shape {
public:
};
typedef listShapes;
Shapes shape; // single, singular
Shapes shapes[10]; // multiple, plual
Shape array[10]; // BAD multipe, no plural
Abraxas/ECS C++ Home Table of Contents