source: trunk/MagicSoft/Mars/mbase/MString.h@ 6950

Last change on this file since 6950 was 5713, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 408 bytes
Line 
1#ifndef MARS_MString
2#define MARS_MString
3
4#ifndef ROOT_TString
5#include <TString.h>
6#endif
7
8#include <stdio.h>
9#include <stdarg.h>
10
11class MString : public TString
12{
13public:
14 MString &Print(const char *fmt, va_list &ap);
15 MString &Print(const char *fmt, ...);
16 static MString Form(const char *fmt, ...);
17
18 ClassDef(MString, 1) // Tool to make Form() thread safe against other TStrings
19};
20
21#endif
Note: See TracBrowser for help on using the repository browser.