Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #pragma once
- // VectorGraphic.h
- #ifndef VECTOR_GRAPHIC_H
- #define VECTOR_GRAPHIC_H
- class VectorGraphic
- {
- unsigned int numGraphicElements;
- GraphicElement* pElements;
- public:
- VectorGraphic();
- ~VectorGraphic()
- {
- if (pElements)
- delete[]pElements;
- }
- void AddGraphicElement();
- void DeleteGraphicElement();
- void ReportVectorGraphic();
- };
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement