My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
SpecificName.h
Go to the documentation of this file.
1 // $Id: SpecificName.h,v 1.2 2009/07/13 22:00:37 eml Exp $
2 
3 #ifndef GCP_UTIL_SPECIFICNAME_H
4 #define GCP_UTIL_SPECIFICNAME_H
5 
15 #include <string>
16 
17 namespace gcp {
18  namespace util {
19 
20  class SpecificName {
21  public:
22 
26  SpecificName();
27 
31  virtual ~SpecificName();
32 
33  static std::string experimentName();
34 
35  static std::string experimentNameCaps();
36 
37  static std::string viewerName();
38 
39  static std::string controlName();
40 
41  static std::string mediatorName();
42 
43  static std::string envVarName();
44 
45  static bool envVarIsDefined();
46 
47  private:
48 
49  }; // End class SpecificName
50 
51  } // End namespace util
52 } // End namespace gcp
53 
54 
55 
56 #endif // End #ifndef GCP_UTIL_SPECIFICNAME_H
SpecificName()
Definition: SpecificName.cc:15
virtual ~SpecificName()
Definition: SpecificName.cc:20
Definition: SpecificName.h:20