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 bool OutputUnicode = false;
24 // Input and output filenames entered in command line
25 int main(int argc, char *argv[])
27 cout << "\nPDRTRAN V";
28 cout << KPdrtranVersion << "\n";
29 cout << "Copyright (c) 1998-2004 Symbian Software Ltd.\n";
33 cout << "Usage: PDRTRAN srcfile [srcfile2 ..] destfile\n";
34 cout << "where srcfile is the file containing printer models,\n";
35 cout << "typeface information and character width tables, and\n";
36 cout << "destfile is the pdr store file.\n";
42 for (int i = 1; i < argc - 1; i++)
44 if (!reader.Read(argv[i]))
46 cerr << "Problem encountered in file " << argv[i] << "\n";
50 if (!reader.Store(argv[argc - 1]))
52 cerr << "Problem writing pdr file " << argv[argc - 1] << "\n";
55 cout << argv[argc-1] << " created\n";