00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSMutableArray;
00010
00011 @interface CPMessageContext : NSObject
00012 {
00013 NSMutableArray *m_warnings;
00014 NSMutableArray *m_errors;
00015 }
00016
00017 + (void)initialize;
00018 + (void)logProblems;
00019 + (void)reportWarning:(struct CPTaggedMessageStructure *)fp8;
00020 + (void)reportError:(struct CPTaggedMessageStructure *)fp8;
00021 + (void)reportWarningException:(id)fp8;
00022 + (void)reportErrorException:(id)fp8;
00023 + (void)createContextForCurrentThread;
00024 + (void)removeContextForCurrentThread;
00025 + (long)getWarningCount;
00026 + (id)getWarning:(int)fp8;
00027 + (long)getErrorCount;
00028 + (id)getError:(int)fp8;
00029 + (void)setIsFileStructuredStorage:(BOOL)fp8;
00030 + (BOOL)isFileStructuredStorage;
00031 - (id)init;
00032 - (void)dealloc;
00033
00034 @end
00035