ITK Function Reference
(V10000.1.0.60_20160308.00)
Main Page
Related Pages
Modules
Data Structures
Files
File List
Globals
briefcase
briefcase_errors.h
Go to the documentation of this file.
1
/*==============================================================================
2
3
Copyright (c) 2005 UGS
4
Unpublished - All rights reserved
5
6
===============================================================================
7
8
This file contains error codes for the Briefcase module
9
10
11
================================================================================*/
12
#ifndef BRIEFCASE_ERRORS_H
13
#define BRIEFCASE_ERRORS_H
14
#include <
common/emh_const.h
>
15
16
#define BRIEFCASE_error_base EMH_BRIEFCASE_error_base
17
18
#define BCASE_module_not_initialised BRIEFCASE_error_base+1
19
#define BCASE_unable_to_open_container BRIEFCASE_error_base+2
20
#define BCASE_unable_to_close_container BRIEFCASE_error_base+3
21
#define BCASE_unable_to_add_part BRIEFCASE_error_base+4
22
#define BCASE_part_not_found BRIEFCASE_error_base+5
23
#define BCASE_unable_set_property BRIEFCASE_error_base+6
24
#define BCASE_unable_get_property BRIEFCASE_error_base+7
25
#define BCASE_unable_set_group BRIEFCASE_error_base+8
26
#define BCASE_unable_get_group BRIEFCASE_error_base+9
27
#define BCASE_extract_failed BRIEFCASE_error_base+10
28
#define BCASE_part_already_exists BRIEFCASE_error_base+11
29
#define BCASE_unable_to_get_contents BRIEFCASE_error_base+12
30
31
32
#endif