Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
32 const boolean Proportional = 1; /**< WARNING: Constant for internal use ONLY. Compatibility is not guaranteed in future releases. */
33 const boolean Serif = 2; /**< WARNING: Constant for internal use ONLY. Compatibility is not guaranteed in future releases. */
34 const boolean Symbol = 4; /**< WARNING: Constant for internal use ONLY. Compatibility is not guaranteed in future releases. */
38 WARNING: Function for internal use ONLY. Compatibility is not guaranteed in future releases.
40 inline void ExternalizeStreamOff(ostream& out, streamoff aOffset)
42 // This will limit the file to 4gig.
43 // Need to change this if all compilers support file size greater than 4gig.
44 uint32 offset = static_cast<uint32>(aOffset);
45 out.write(reinterpret_cast<char*>(&offset), sizeof(offset));
51 WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases.
56 virtual void Externalize(ostream& out) = 0;
57 virtual void ExternalizeComponents(ostream&){};
63 class RecordList : public ObjectList<Record*>
66 WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases.
70 void ExternalizeIds(ostream& out);
71 void Externalize(ostream& out);
72 void ExternalizeComponents(ostream& out);
73 IMPORT_C void Add(Record* aRecord);
74 IMPORT_C Record *LabelToRecord(const String& aLabel);
75 IMPORT_C void Destroy();
76 IMPORT_C ~RecordList();
82 WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases.
87 void Externalize(ostream& out);
96 WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases.
100 void Externalize(ostream& out);