OpenCMISS-Zinc C++ API Documentation
status.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_STATUS_HPP
14 #define CMZN_STATUS_HPP
15 
16 #include "opencmiss/zinc/status.h"
17 
18 namespace OpenCMISS
19 {
20 namespace Zinc
21 {
22 
35 enum Status
36 {
37  WARNING_PART_DONE = CMZN_WARNING_PART_DONE,
40  ERROR_IN_USE = CMZN_ERROR_IN_USE,
43  ERROR_ARGUMENT_CONTEXT = CMZN_ERROR_ARGUMENT_CONTEXT,
45  ERROR_NOT_IMPLEMENTED = CMZN_ERROR_NOT_IMPLEMENTED,
47  ERROR_INCOMPATIBLE_DATA = CMZN_ERROR_INCOMPATIBLE_DATA,
49  ERROR_ALREADY_EXISTS = CMZN_ERROR_ALREADY_EXISTS,
51  ERROR_NOT_FOUND = CMZN_ERROR_NOT_FOUND,
53  ERROR_MEMORY = CMZN_ERROR_MEMORY,
55  ERROR_ARGUMENT = CMZN_ERROR_ARGUMENT,
57  ERROR_GENERAL = CMZN_ERROR_GENERAL,
59  OK = CMZN_OK
61 };
62 
63 } // namespace Zinc
64 }
65 
66 #endif
Definition: status.hpp:51
Definition: status.hpp:53
Definition: status.hpp:37
Definition: status.hpp:59
Definition: status.hpp:57
Definition: status.hpp:40
Status
Definition: status.hpp:35
Definition: status.hpp:49
The OpenCMISS namespace.
Definition: context.hpp:20
Definition: status.hpp:55