00001 #ifndef IGUANA_MODELS_IG_TEXT_REP_H
00002 # define IGUANA_MODELS_IG_TEXT_REP_H
00003
00004
00005
00006 # include "Iguana/Models/interface/config.h"
00007 # include "Iguana/Framework/interface/IgRep.h"
00008 # include <string>
00009
00010
00011
00012
00013
00014 class IgTextModel;
00015
00016
00017
00018
00019
00020 class IGUANA_MODELS_API IgTextRep : public IgRep
00021 {
00022 public:
00023 ~IgTextRep (void);
00024
00025
00026
00027
00028 virtual const std::string & text (void) const = 0;
00029 virtual void setText (const std::string &text) = 0;
00030 };
00031
00032
00033
00034
00035 #endif // IGUANA_MODELS_IG_TEXT_REP_H