KaliVeda
Toolkit for HIC analysis
Loading...
Searching...
No Matches
KVColouredBase.h
1
3
4#ifndef __KVCOLOUREDBASE_H
5#define __KVCOLOUREDBASE_H
6
7#include "KVBase.h"
8
15class KVColouredBase : public KVBase {
16protected:
18
19public:
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.
const Char_t * GetLVEntryColour() const
virtual ~KVColouredBase()
Destructor.
void SetColour(const Char_t *c)