#ifndef ROO_STRING_VAR
#define ROO_STRING_VAR
#include "Riostream.h"
#include "TString.h"
#include "RooAbsString.h"
class RooArgSet ;
class RooStringVar : public RooAbsString {
public:
  
  inline RooStringVar() { }
  RooStringVar(const char *name, const char *title, const char* value, Int_t size=1024) ; 
  RooStringVar(const RooStringVar& other, const char* name=0);
  virtual TObject* clone(const char* newname) const { return new RooStringVar(*this,newname); }
  virtual ~RooStringVar();
  
  
  virtual operator TString() ;
  virtual const char* getVal() const { return _value ; } 
  virtual void setVal(const char* newVal) ;
  virtual RooAbsArg& operator=(const char* newValue);
  
  inline virtual Bool_t isFundamental() const { return kTRUE; }
  
  virtual Bool_t readFromStream(istream& is, Bool_t compact, Bool_t verbose=kFALSE) ;
  virtual void writeToStream(ostream& os, Bool_t compact) const ;
protected:
  ClassDef(RooStringVar,1) 
};
#endif
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.