00001
00002
00003
00004
00005
00006
00007 #ifndef AIDA_IINFO_H
00008 #define AIDA_IINFO_H 1
00009
00010
00011
00012
00013
00014
00015 #include <string>
00016
00017 namespace AIDA {
00018
00019 class IFillStyle;
00020 class ILineStyle;
00021 class IMarkerStyle;
00022
00032 class IInfo {
00033
00034 public:
00036 virtual ~IInfo() { ; }
00037
00041 virtual void clear() = 0;
00042
00046 virtual void addText(const std::string & text) = 0;
00047
00052 virtual void addLegend(const IMarkerStyle & style, const std::string & description) = 0;
00053
00054 virtual void addLegend(const ILineStyle & style, const std::string & description) = 0;
00055
00056 virtual void addLegend(const IFillStyle & style, const std::string & description) = 0;
00057 };
00058 };
00059 #endif