UNIVERS  15.3
UNIVERS base processing software API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
errors.hpp
1 /* errors.hpp */
2 /* $Id$ */
3 #ifndef __errors_hpp
4 #define __errors_hpp
5 
6 #include <QString>
7 
9 namespace hds
10 {
12  enum ErrCode
13  {
14  noError = 0,
16  };
17 
19  QString errCodeStr(hds::ErrCode err_code);
20 };
21 
22 
23 #endif /* errors.hpp */
Definition: errors.hpp:15
ErrCode
Definition: errors.hpp:12
QString errCodeStr(hds::ErrCode err_code)
Definition: errors.hpp:14