UNIVERS  15.3
UNIVERS base processing software API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
types.hpp
1 /* dcf_types.hpp */
2 /* $Id$ */
3 #ifndef __dcf_types_hpp
4 #define __dcf_types_hpp
5 
6 #include <string>
7 
8 namespace dcf
9 {
11  enum error_t
12  {
13  ErrSuccess = 0,
18  };
19 
21  std::string errstr(error_t err);
22 
24  enum mantype_t
25  {
26  CUDAMan = 0,
29  };
30 };
31 
32 #endif /* types.hpp */
error_t
Definition: types.hpp:11
Definition: types.hpp:13
mantype_t
Definition: types.hpp:24
std::string errstr(error_t err)
Definition: types.hpp:17
Definition: types.hpp:26
Definition: types.hpp:28
Definition: types.hpp:15
Definition: types.hpp:16
Definition: types.hpp:14
Definition: types.hpp:27