ITK Function Reference

(V10000.1.0.60_20160308.00)
method_errors.h
Go to the documentation of this file.
1 /*=============================================================================
2  Copyright (c) 1994 Electronic Data Systems Corporation
3  Unpublished - All rights reserved
4 
5  THIS PROGRAM IS AN UNPUBLISHED WORK FULLY PROTECTED BY THE UNITED STATES
6  COPYRIGHT LAWS AND IS CONSIDERED A TRADE SECRET BELONGING TO THE COPYRIGHT
7  HOLDER.
8 ===============================================================================
9 H+++ File description:
10 
11 
12  File : method_errors.h
13  Module : imancore
14 ===============================================================================
15 H::: History:
16  date name description of change
17 08-Apr-1994 reed Created
18 24-Jun-1994 Vic Nidoy Add error base
19 14-Jul-1994 Vic Nidoy Remove METHOD_object_of_wrong_class
20 20-Jul-1994 Boma Koko Promoted from idm_main to main
21 16-Apr-2002 Sanjay Patel,,, Adding method table manipulation errors
22 06-Aug-2002 Aaron Ruckman Split libtc.dll project
23 05-Sep-2002 Aaron Ruckman Update headers as part of dll splitiman project
24 22-Nov-2002 Tim Baverstock Normalise inclusion
25 $HISTORY$
26 H---=========================================================================*/
27 
28 #ifndef METHOD_ERRORS_H
29 #define METHOD_ERRORS_H
30 
31 #ifndef EMH_CONST_H
32 #include <common/emh_const.h>
33 #endif
34 #include <tccore/libtccore_exports.h>
35 
36 #define METHOD_internal_error (EMH_METHOD_error_base + 1)
37 #define METHOD_invalid_type (EMH_METHOD_error_base + 2)
38 #define METHOD_already_registered (EMH_METHOD_error_base + 3)
39 #define METHOD_invalid_position (EMH_METHOD_error_base + 4)
40 #define METHOD_no_methods_to_remove (EMH_METHOD_error_base + 5)
41 #define METHOD_no_methods_to_move (EMH_METHOD_error_base + 6)
42 #define METHOD_no_pre_conditions (EMH_METHOD_error_base + 7)
43 #define METHOD_no_pre_actions (EMH_METHOD_error_base + 8)
44 #define METHOD_no_post_actions (EMH_METHOD_error_base + 9)
45 
46 #include <tccore/libtccore_undef.h>
47 #endif