1 // $Id: ui_constants.h,v 1.12 2011/03/07 06:08:53 bobgian Exp $
2 
3 /*
4  *  Copyright 2002  Peter Beerli, Mary Kuhner, Jon Yamato and Joseph Felsenstein
5  *
6  *  This software is distributed free of charge for non-commercial use
7  *  and is copyrighted.  Of course, we do not guarantee that the software
8  *  works, and are not responsible for any damage you may cause or have.
9  *
10  */
11 
12 #ifndef UI_CONSTANTS_H
13 #define UI_CONSTANTS_H
14 
15 enum ui_param_class { uipsingle, untouched, global };
16 
17 class uiconst
18 {
19   public:
20     static const long NO_ID;
21     static const long GLOBAL_ID;
22     static const long GLOBAL_DATAMODEL_NUC_ID;
23     static const long GLOBAL_DATAMODEL_MSAT_ID;
24     static const long GLOBAL_DATAMODEL_KALLELE_ID;
25     static const long diseaseColumns;
26     static const long migColumns;
27 };
28 
29 #endif // UI_CONSTANTS_H
30 
31 //____________________________________________________________________________________
32