1 // $Id: gc_default.h,v 1.12 2011/03/08 19:22:00 bobgian Exp $
2 
3 /*
4   Copyright 2002  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 #ifndef GC_DEFAULT_H
12 #define GC_DEFAULT_H
13 
14 #include "gc_types.h"
15 #include "wx/string.h"
16 
17 class gcdefault
18 {
19   public:
20     static const long       badDisplayIndex;
21     static const size_t     badIndex;
22     static const size_t     badLength;
23     static const long       badLocation;
24     static const long       badMapPosition;
25     static const wxString   createdIndividualPrefix;
26     static const wxString   delimiter;
27     static const wxString   emptyBlock;
28     static const wxString   locusName;
29     static const double     penetrance;
30     static const size_t     migrateSequenceNameLength;
31     static const size_t     numSites;
32     static const wxString   popName;
33     static const wxString   regionName;
34     static const wxString   unnamedObject;
35 };
36 
37 #endif  // GC_DEFAULT_H
38 
39 //____________________________________________________________________________________
40