Bump for 3.6-28
[LibreOffice.git] / idl / inc / command.hxx
blobd498602c80ccfcada725ab89f8daf29e02532363
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #ifndef _COMMAND_HXX
30 #define _COMMAND_HXX
32 #include <tools/string.hxx>
33 #include <rtl/ustring.hxx>
34 #include <vector>
36 typedef ::std::vector< String* > StringList;
37 typedef ::std::vector< rtl::OString* > ByteStringList;
39 class SvCommand
41 public:
42 String aDataBaseFile;
43 StringList aInFileList;
44 String aListFile;
45 String aSlotMapFile;
46 String aSfxItemFile;
47 String aODLFile;
48 String aCallingFile;
49 String aCxxFile;
50 String aHxxFile;
51 String aSrcFile;
52 String aPath;
53 String aCHeaderFile;
54 String aCSourceFile;
55 String aTargetFile;
56 String aHelpIdFile;
57 String aCSVFile;
58 String aExportFile;
59 String aDocuFile;
60 ::rtl::OUString m_DepFile;
61 sal_uInt32 nVerbosity;
62 sal_uInt32 nFlags;
64 SvCommand( int argc, char ** argv );
65 ~SvCommand();
68 void Init();
69 class SvIdlWorkingBase;
70 sal_Bool ReadIdl( SvIdlWorkingBase * pDataBase, const SvCommand & rCommand );
71 void DeInit();
73 #endif // _COMMAND_HXX
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */