// Read the documentation to learn more about C++ code generator // versioning. // %X% %Q% %Z% %W% #ifndef PLOTVECTOR_H #define PLOTVECTOR_H 1 #include #include struct PlotVector { PlotVector(); PlotVector (size_t arraySize); // Data Members for Class Attributes std::vector data; std::vector > errors; PlotAttributes styles; public: protected: private: private: //## implementation }; // Class PlotVector #endif