ROOT  6.06/09
Reference Guide
TObjString.h
Go to the documentation of this file.
1 // @(#)root/base:$Id$
2 // Author: Fons Rademakers 12/11/95
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TObjString
13 #define ROOT_TObjString
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TObjString //
19 // //
20 // Collectable string class. This is a TObject containing a TString. //
21 // //
22 //////////////////////////////////////////////////////////////////////////
23 
24 #ifndef ROOT_TObject
25 #include "TObject.h"
26 #endif
27 #ifndef ROOT_TString
28 #include "TString.h"
29 #endif
30 
31 
32 class TObjString : public TObject {
33 
34 private:
35  TString fString; // wrapped TString
36 
37 public:
38  TObjString(const char *s = "") : fString(s) { }
39  TObjString(const TObjString &s) : TObject(), fString(s.fString) { }
41  Int_t Compare(const TObject *obj) const;
42  const char *GetName() const { return fString; }
43  ULong_t Hash() const { return fString.Hash(); }
44  void FillBuffer(char *&buffer) { fString.FillBuffer(buffer); }
45  void Print(Option_t *) const { Printf("TObjString = %s", (const char*)fString); }
46  Bool_t IsSortable() const { return kTRUE; }
47  Bool_t IsEqual(const TObject *obj) const;
48  void ReadBuffer(char *&buffer) { fString.ReadBuffer(buffer); }
49  void SetString(const char *s) { fString = s; }
50  TString GetString() const { return fString; }
51  Int_t Sizeof() const { return fString.Sizeof(); }
52  TString &String() { return fString; }
53 
54  ClassDef(TObjString,1) //Collectable string class
55 };
56 
57 #endif
58 
const char * GetName() const
Returns name of object.
Definition: TObjString.h:42
Int_t Sizeof() const
Definition: TObjString.h:51
virtual void FillBuffer(char *&buffer) const
Copy string into I/O buffer.
Definition: TString.cxx:1206
ULong_t Hash() const
Return hash value for this object.
Definition: TObjString.h:43
Collectable string class.
Definition: TObjString.h:32
const char Option_t
Definition: RtypesCore.h:62
Bool_t IsEqual(const TObject *obj) const
Return kTRUE if the argument has the same content as this object.
Definition: TObjString.cxx:33
Basic string class.
Definition: TString.h:137
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
#define ClassDef(name, id)
Definition: Rtypes.h:254
virtual void ReadBuffer(char *&buffer)
Read string from I/O buffer.
Definition: TString.cxx:1227
TObjString(const char *s="")
Definition: TObjString.h:38
TString fString
Definition: TObjString.h:35
TString GetString() const
Definition: TObjString.h:50
Int_t Compare(const TObject *obj) const
Compare abstract method.
TString & String()
Definition: TObjString.h:52
void FillBuffer(char *&buffer)
Definition: TObjString.h:44
#define Printf
Definition: TGeoToOCC.h:18
unsigned long ULong_t
Definition: RtypesCore.h:51
void ReadBuffer(char *&buffer)
Definition: TObjString.h:48
void Print(Option_t *) const
This method must be overridden when a class wants to print itself.
Definition: TObjString.h:45
Mother of all ROOT objects.
Definition: TObject.h:58
TObjString(const TObjString &s)
Definition: TObjString.h:39
virtual Int_t Sizeof() const
Returns size string will occupy on I/O buffer.
Definition: TString.cxx:1297
const Bool_t kTRUE
Definition: Rtypes.h:91
void SetString(const char *s)
Definition: TObjString.h:49
TObject * obj
Bool_t IsSortable() const
Definition: TObjString.h:46
UInt_t Hash(ECaseCompare cmp=kExact) const
Return hash value.
Definition: TString.cxx:605