Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

sxy_series_null.h

Go to the documentation of this file.
00001 
00002 #ifndef nullseries_h
00003 #define nullseries_h
00004 
00005 // =======================================================================
00006 
00007 #include "sxy_series.h"
00008 
00009 // =======================================================================
00010 
00013 class SXYNullSeries : public SXYSeries {
00014 
00015  public:
00016 
00017    // Métodos redefinidos para uma série
00018    unsigned int getNumPoints(void) { return 0; }
00019    unsigned int getPoint(unsigned int n, double& x, double& y) { return 0; }
00020     
00021    // Construtor e destrutor 
00022    SXYNullSeries(void) {}
00023    virtual ~SXYNullSeries() {}
00024 };
00025 
00026 #endif
00027 

SXY
Tecgraf / PUC-Rio - Computer Graphics Technology Group