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/.
11 #ifndef INCLUDED_OOX_PPT_COMMENTS_HXX
12 #define INCLUDED_OOX_PPT_COMMENTS_HXX
15 #include <com/sun/star/util/DateTime.hpp>
17 namespace oox
{ namespace ppt
{
28 class CommentAuthorList
31 std::vector
<CommentAuthor
> cmAuthorLst
;
34 void setValues(const CommentAuthorList
& list
);
36 const std::vector
<CommentAuthor
>& getCmAuthorLst() const
41 void addAuthor(const CommentAuthor
& _author
)
43 cmAuthorLst
.push_back(_author
);
58 ::com::sun::star::util::DateTime aDateTime
;
60 void setDateTime (const OUString
& datetime
);
63 void setAuthorId(const OUString
& _aId
)
67 void setdt(const OUString
& _dt
)
72 void setidx(const OUString
& _idx
)
76 void setPoint(const OUString
& _x
, const OUString
& _y
)
81 void setText(const OUString
& _text
)
85 OUString
getAuthorId()
109 ::com::sun::star::util::DateTime
getDateTime()
121 OUString
getAuthor ( const CommentAuthorList
& list
);
127 std::vector
<Comment
> cmLst
;
130 return (int)cmLst
.size();
132 const Comment
& getCommentAtIndex (int index
);
139 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */