]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpGraphicsTypes.h
Coding conventions corrections only
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpGraphicsTypes.h
1 // $Id$
2 // Category: graphics
3 //
4 // AliMpGraphicsTypes
5 // ------------------
6 // Sytem dependent types definitions for graphics category.
7 //
8 // Authors: David Guez, Ivana Hrivnacova; IPN Orsay
9
10 #ifndef ALI_MP_GRAPHICS_TYPES_H
11 #define ALI_MP_GRAPHICS_TYPES_H
12
13 #include <vector>
14
15 class AliMpGraphContext;
16
17 #ifdef __HP_aCC
18   typedef vector<AliMpGraphContext*> GraphContextVector;
19 #else
20   typedef std::vector<AliMpGraphContext*> GraphContextVector;
21 #endif
22
23 #endif //ALI_MP_GRAPHICS_TYPES_H