UsageLevel.hpp
1 #ifndef OPALS_USAGE_LEVEL_HPP_INCLUDED
2 #define OPALS_USAGE_LEVEL_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// Frequency of use / needed level of user experience of an option.
9  namespace UsageLevel
10  {
11  enum Type
12  {
13  basic , ///< Relevant for all kinds of use.
14  mid , ///< Relevant for advanced use only.
15  pro , ///< Relevant for expert use only.
16  Count ///< number of elements
17  };
18  }
19 }
20 
21 #endif