update emoji autocorrect entries from po-files
[LibreOffice.git] / include / sfx2 / templaterepository.hxx
blobac502f5d1eb8636d8cd005b6717c2242436bfe5d
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/.
8 */
10 #ifndef INCLUDED_SFX2_TEMPLATEREPOSITORY_HXX
11 #define INCLUDED_SFX2_TEMPLATEREPOSITORY_HXX
13 #include <sfx2/templateproperties.hxx>
15 class TemplateRepository
17 public:
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; }
33 public:
35 sal_uInt16 mnId;
36 OUString maTitle;
38 private:
40 OUString maUrl;
41 std::vector<TemplateItemProperties> maTemplates;
44 #endif // INCLUDED_SFX2_TEMPLATEREPOSITORY_HXX
46 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */