KaliVeda
Toolkit for HIC analysis
KVColouredBase.h
1 
4 #ifndef __KVCOLOUREDBASE_H
5 #define __KVCOLOUREDBASE_H
6 
7 #include "KVBase.h"
8 
15 class KVColouredBase : public KVBase {
16 protected:
18 
19 public:
21  KVColouredBase(const Char_t* name, const Char_t* title = "", const Char_t* colour = "white");
22  virtual ~KVColouredBase();
23 
24  void SetColour(const Char_t* c)
25  {
26  fColour = c;
27  }
28  const Char_t* GetLVEntryColour() const
29  {
30  return fColour;
31  }
32 
33  ClassDef(KVColouredBase, 1) //A basic coloured object for coloured list views
34 };
35 
36 #endif
#define c(i)
char Char_t
#define ClassDef(name, id)
Base class for KaliVeda framework.
Definition: KVBase.h:142
A basic coloured object for couloured list views.
KVColouredBase()
Default constructor.
virtual ~KVColouredBase()
Destructor.
const Char_t * GetLVEntryColour() const
void SetColour(const Char_t *c)