CPTiOSApi  1.25
 All Classes Functions Variables Enumerations Enumerator Pages
/Users/sviluppo/marco/CPTApi/CustomXmliOSApi/CustomXmliOSApi/CustomXmlError.h
1 //
2 // CustomXmlError.h
3 // CustomXmlTest
4 //
5 // Created by sviluppo on 19/03/14.
6 // Copyright (c) 2014 CUSTOM. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 
12 
13 #define CUSTOM_XML_RETCODE_SUCCESS 0
14 #define CUSTOM_XML_RETCODE_FAILURE -1
15 
16 
17 
21 @interface CustomXmlError : NSObject
22 
23 
24 {
25 @public
26 
31  {
80 
81  };
82 
83 @protected
84 
85 @private
86 }
87 
88 //Hide it in the documentation
90 +(void) Create:(NSError**)error :(enum ErrorCodes)errcode;
91 +(void) Create:(NSError**)error :(enum ErrorCodes)errcode :(NSString*)strFormat ,...;
92 +(void) Init:(NSError**)error;
94 
95 
96 
97 
98 
99 @end