bump product version to 6.3.0.0.beta1
[LibreOffice.git] / include / svl / ownlist.hxx
blob7c3eae17b8ce1f96692d3898a511e7cd495e2f85
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SVL_OWNLIST_HXX
21 #define INCLUDED_SVL_OWNLIST_HXX
23 #include <svl/svldllapi.h>
24 #include <rtl/ustring.hxx>
25 #include <vector>
27 namespace com { namespace sun { namespace star {
28 namespace beans {
29 struct PropertyValue;
31 }}}
33 namespace com { namespace sun { namespace star { namespace uno { template <typename > class Sequence; } } } }
35 class SvCommand
37 Contains a string that defines the command and another string for the
38 command arguments. If such a command were given in the command line,
39 it would look like this: command = argument
42 OUString aCommand;
43 OUString aArgument;
44 public:
45 SvCommand( const OUString & rCommand, const OUString & rArg )
47 aCommand = rCommand;
48 aArgument = rArg;
50 const OUString & GetCommand() const { return aCommand; }
51 const OUString & GetArgument() const { return aArgument; }
54 class SVL_DLLPUBLIC SvCommandList
56 The list contains objects of type SvCommand.
57 If an object is inserted, it is copied and inserted at the end
58 of the list.
61 private:
62 ::std::vector< SvCommand > aCommandList;
64 public:
65 void Append( const OUString & rCommand, const OUString & rArg );
67 void FillFromSequence( const css::uno::Sequence < css::beans::PropertyValue >& );
68 void FillSequence( css::uno::Sequence < css::beans::PropertyValue >& ) const;
70 size_t size() const { return aCommandList.size(); }
72 SvCommand const & operator[]( size_t i) {
73 return aCommandList[ i ];
78 #endif // INCLUDED_SVL_OWNLIST_HXX
80 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */