OpenCMISS-Zinc C++ API Documentation
 All Classes Namespaces Files Functions Typedefs Enumerations Enumerator Pages
result.hpp
Go to the documentation of this file.
1 
7 /* OpenCMISS-Zinc Library
8 *
9 * This Source Code Form is subject to the terms of the Mozilla Public
10 * License, v. 2.0. If a copy of the MPL was not distributed with this
11 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
12 
13 #ifndef CMZN_RESULT_HPP
14 #define CMZN_RESULT_HPP
15 
16 #include "opencmiss/zinc/result.h"
17 
18 namespace OpenCMISS
19 {
20 namespace Zinc
21 {
22 
23 enum Result
24 {
25  RESULT_ERROR_IN_USE = CMZN_RESULT_ERROR_IN_USE,
26  RESULT_ERROR_ARGUMENT_CONTEXT = CMZN_RESULT_ERROR_ARGUMENT_CONTEXT,
27  RESULT_ERROR_NOT_IMPLEMENTED = CMZN_RESULT_ERROR_NOT_IMPLEMENTED,
28  RESULT_ERROR_INCOMPATIBLE_DATA = CMZN_RESULT_ERROR_INCOMPATIBLE_DATA,
29  RESULT_ERROR_ALREADY_EXISTS = CMZN_RESULT_ERROR_ALREADY_EXISTS,
30  RESULT_ERROR_NOT_FOUND = CMZN_RESULT_ERROR_NOT_FOUND,
31  RESULT_ERROR_MEMORY = CMZN_RESULT_ERROR_MEMORY,
32  RESULT_ERROR_ARGUMENT = CMZN_RESULT_ERROR_ARGUMENT,
33  RESULT_ERROR_GENERAL = CMZN_RESULT_ERROR_GENERAL,
34  RESULT_OK = CMZN_RESULT_OK
35 };
36 
37 } // namespace Zinc
38 }
39 
40 #endif