Fire Core  8.0.0.alpha
GIS framework per tutti gli usi
 Tutto Classi Namespace Funzioni Variabili Ridefinizioni di tipo (typedef) Tipi enumerati (enum) Valori del tipo enumerato Friend
IGraphicContext.hpp
1 // Copyright 2015 GEOSYSTEMS SRL
2 // All Rights Reserved.
3 
4 #ifndef FIRE_GRAPHICS_IGRAPHICCONTEXT_HPP_INCLUDED
5 #define FIRE_GRAPHICS_IGRAPHICCONTEXT_HPP_INCLUDED
6 
7 namespace fire {
8 namespace graphics {
16  public:
23  virtual void drawRect() = 0;
30  virtual void drawEllipse() = 0;
37  virtual void drawLine() = 0;
44  virtual void drawPolygon() = 0;
51  virtual void drawImage() = 0;
58  virtual void drawText() = 0;
65  virtual void fillRect() = 0;
72  virtual void fillPolygon() = 0;
79  virtual void fillEllipse() = 0;
80 };
81 
82 } // namespace graphics
83 } // namespace fire
84 
85 #endif
Definition: IGraphicContext.hpp:15