1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
20 #include <s32std.h> // for TSwizzle
21 #include <apmrec.h> // for TRecognitionConfidence
23 /** Base classes for BIO-message Information File (BIF) Reader
28 class CBioInfoFile : public CBase
34 CBioInfoFile(RFs& aFs);
38 class CIdHeader : public CBase
44 void InternalizeL(RReadStream& aStream);
45 void ExternalizeL(RWriteStream& aStream) const;
49 CApaDataRecognizerType::TRecognitionConfidence iConfidence;
50 TSwizzle<HBufC> iText;
53 TInt16 iGeneralIdData;
59 void InternalizeL(RReadStream& aStream);
60 void ExternalizeL(RWriteStream& aStream) const;
70 // Simple data to be read/write to/from BIF file
73 HBufC* iMessageParserName;
76 HBufC* iMessageAppCtrlName;
81 HBufC* iFileExtension;
82 HBufC* iIconsFilename;
85 // Complex data to be read/write to/from BIF file
86 CArrayPtrFlat<CIdHeader>* iIdHeaderArray;
87 CArrayFix<TIconZoomLevel>* iIconZoomLevelArray;
90 #endif // __BIFBASE_H__