OpenCMISS-Zinc C++ API Documentation
 All Classes Namespaces Files Functions Typedefs Enumerations Enumerator Pages
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  ERROR_IN_USE = CMZN_ERROR_IN_USE,
40  ERROR_ARGUMENT_CONTEXT = CMZN_ERROR_ARGUMENT_CONTEXT,
42  ERROR_NOT_IMPLEMENTED = CMZN_ERROR_NOT_IMPLEMENTED,
44  ERROR_INCOMPATIBLE_DATA = CMZN_ERROR_INCOMPATIBLE_DATA,
46  ERROR_ALREADY_EXISTS = CMZN_ERROR_ALREADY_EXISTS,
48  ERROR_NOT_FOUND = CMZN_ERROR_NOT_FOUND,
50  ERROR_MEMORY = CMZN_ERROR_MEMORY,
52  ERROR_ARGUMENT = CMZN_ERROR_ARGUMENT,
54  ERROR_GENERAL = CMZN_ERROR_GENERAL,
56  OK = CMZN_OK
58 };
59 
60 } // namespace Zinc
61 }
62 
63 #endif
Definition: status.hpp:48
Definition: status.hpp:50
Definition: status.hpp:56
Definition: status.hpp:54
Definition: status.hpp:37
Status
Definition: status.hpp:35
Definition: status.hpp:46
Definition: status.hpp:52