Advertisement
Broatlas

VectorGraphic.h

Oct 7th, 2016
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1. #pragma once
  2. // VectorGraphic.h
  3.  
  4. #ifndef VECTOR_GRAPHIC_H
  5. #define VECTOR_GRAPHIC_H
  6.  
  7. class VectorGraphic
  8. {
  9.     unsigned int numGraphicElements;
  10.     GraphicElement* pElements;
  11. public:
  12.     VectorGraphic();
  13.     ~VectorGraphic()
  14.     {
  15.         if (pElements)
  16.             delete[]pElements;
  17.     }
  18.     void AddGraphicElement();
  19.     void DeleteGraphicElement();
  20.     void ReportVectorGraphic();
  21. };
  22.  
  23. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement