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.
22 EXPORT_C Record::Record()
23 : iLabel(), iStreamId(0)
27 void RecordList::ExternalizeIds(ostream& out)
31 out.write((char*) &size, sizeof(size));
32 for (i = 0; i < size; i++)
34 ::ExternalizeStreamOff(out, (*this)[i]->iStreamId);
38 void RecordList::Externalize(ostream& out)
41 out.write ((char*) &size, sizeof(size));
42 for (int i = 0; i < size; i++)
43 (*this)[i]->Externalize(out);
46 void RecordList::ExternalizeComponents(ostream& out)
49 for (int i = 0; i < size; i++)
50 (*this)[i]->ExternalizeComponents(out);
53 EXPORT_C void RecordList::Add(Record* aRecord)
55 if (!LabelToRecord(aRecord->iLabel))
56 List<Record*>::Add(aRecord);
59 EXPORT_C Record *RecordList::LabelToRecord(const String& aLabel)
64 for (int i = 0; i < size; i++)
65 if ((*this)[i]->iLabel == aLabel)
70 EXPORT_C void RecordList::Destroy()
72 List<Record*>::Destroy();
75 EXPORT_C RecordList::~RecordList()
79 EXPORT_C Typeface::Typeface()
84 void Typeface::Externalize(ostream& out)
86 iName.Externalize(out);
87 out.put((char) iFlags);
90 void Point::Externalize(ostream& out)
92 out.write((char*) &iX, sizeof(iX));
93 out.write((char*) &iY, sizeof(iY));