1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef Fireworks_Core_fwGC_h
#define Fireworks_Core_fwGC_h
class TGGC;
// global graphical contexts
namespace fireworks {
const TGGC& boldGC();
const TGGC& italicGC();
const TGGC& redGC();
const TGGC& greenGC();
} // namespace fireworks
#endif
|