OpenCMISS-Zinc C++ API Documentation
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_WARNING_PART_DONE = CMZN_RESULT_WARNING_PART_DONE,
26  RESULT_ERROR_IN_USE = CMZN_RESULT_ERROR_IN_USE,
27  RESULT_ERROR_ARGUMENT_CONTEXT = CMZN_RESULT_ERROR_ARGUMENT_CONTEXT,
28  RESULT_ERROR_NOT_IMPLEMENTED = CMZN_RESULT_ERROR_NOT_IMPLEMENTED,
29  RESULT_ERROR_INCOMPATIBLE_DATA = CMZN_RESULT_ERROR_INCOMPATIBLE_DATA,
30  RESULT_ERROR_ALREADY_EXISTS = CMZN_RESULT_ERROR_ALREADY_EXISTS,
31  RESULT_ERROR_NOT_FOUND = CMZN_RESULT_ERROR_NOT_FOUND,
32  RESULT_ERROR_MEMORY = CMZN_RESULT_ERROR_MEMORY,
33  RESULT_ERROR_ARGUMENT = CMZN_RESULT_ERROR_ARGUMENT,
34  RESULT_ERROR_GENERAL = CMZN_RESULT_ERROR_GENERAL,
35  RESULT_OK = CMZN_RESULT_OK
36 };
37 
38 } // namespace Zinc
39 }
40 
41 #endif
The OpenCMISS namespace.
Definition: context.hpp:20