00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef SEN_XML_CONSTANTS_H
00022 #define SEN_XML_CONSTANTS_H
00023
00024
00025 #include <e32base.h>
00026
00027
00028
00029 const TInt KErrSenInvalidCharacters = -30300;
00030 const TInt KErrSenZeroLengthDescriptor = -30301;
00031 const TInt KErrSenXmlReaderNotSet = -30302;
00032 const TInt KErrSenXmlContentHandlerNotSet = -30303;
00033
00034
00035 _LIT(KPanic, "SenXml");
00036
00037 _LIT8(KLessThan, "<");
00038 _LIT8(KGreaterThan, ">");
00039 _LIT8(KColon, ":");
00040 _LIT8(KSpace, " ");
00041 _LIT8(KDblQuot, "\"");
00042 _LIT8(KEqualsDblQuot, "=\"");
00043 _LIT8(KSlashGreaterThan, "/>");
00044 _LIT8(KLessThanSlash, "</");
00045 _LIT8(KSpaceXmlns, " xmlns");
00046 _LIT8(KXmlns, "xmlns");
00047
00048 _LIT8(KQuotedApos, "'");
00049 _LIT8(KQuotedDblQuot, """);
00050 _LIT8(KQuotedGt, ">");
00051 _LIT8(KQuotedLt, "<");
00052 _LIT8(KQuotedAmp, "&");
00053
00054
00055 enum TPanic
00056 {
00057 EBadNamespace = 1,
00058 EBadNamespacePrefix,
00059 EBufNot16Bit,
00060 EFragmentElementNotInitialized,
00061 EDelegatedFragmentAlreadySet,
00062 EInconsistentTokens,
00063 EBadInternalState
00064 };
00065
00066
00067 #endif
00068
00069
00070