source: trunk/Mars/mbase/MLogPlugin.h@ 14888

Last change on this file since 14888 was 7808, checked in by tbretz, 18 years ago
*** empty log message ***
File size: 339 bytes
Line 
1#ifndef MARS_MLogPlugin
2#define MARS_MLogPlugin
3
4#ifndef ROOT_TObject
5#include <TObject.h>
6#endif
7
8class MLogPlugin : public TObject
9{
10public:
11 virtual void SetColor(int) { }
12 virtual void Underline() { }
13 virtual void WriteBuffer(const char *str, int len) = 0;
14
15 ClassDef(MLogPlugin, 0) // Base for a logger plugin
16};
17
18#endif
Note: See TracBrowser for help on using the repository browser.