1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
10 #ifndef INCLUDED_SFX2_TEMPLATEREPOSITORY_HXX
11 #define INCLUDED_SFX2_TEMPLATEREPOSITORY_HXX
13 #include <sfx2/templateproperties.hxx>
15 class TemplateRepository
19 TemplateRepository () : mnId(0) { };
21 virtual ~TemplateRepository () { };
23 void setURL (const OUString
&rURL
) { maUrl
= rURL
; }
25 const OUString
& getURL () const { return maUrl
; }
27 void insertTemplate (const TemplateItemProperties
&prop
) { maTemplates
.push_back(prop
); }
29 void clearTemplates () { maTemplates
.clear(); }
31 const std::vector
<TemplateItemProperties
>& getTemplates () const { return maTemplates
; }
41 std::vector
<TemplateItemProperties
> maTemplates
;
44 #endif // INCLUDED_SFX2_TEMPLATEREPOSITORY_HXX
46 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */