Page MenuHomePhorge

kolabjournal.h
No OneTemporary

Authored By
Unknown
Size
2 KB
Referenced Files
None
Subscribers
None

kolabjournal.h

/*
* Copyright (C) 2012 Christian Mollekopf <mollekopf@kolabsys.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef KOLABJOURNAL_H
#define KOLABJOURNAL_H
#include <string>
#include <vector>
#include <boost/scoped_ptr.hpp>
#include "kolabcontainers.h"
namespace Kolab {
class Journal {
public:
Journal();
~Journal();
Journal(const Journal &);
void operator=(const Journal &);
bool isValid() const;
void setUid(const std::string &);
std::string uid() const;
void setCreated(const cDateTime &);
cDateTime created() const;
void setLastModified(const cDateTime &);
cDateTime lastModified() const;
void setSequence(int);
int sequence() const;
void setClassification(Classification);
Classification classification() const;
void setCategories(const std::vector<std::string> &);
void addCategory(const std::string &);
std::vector<std::string> categories() const;
void setStart(const cDateTime &);
cDateTime start() const;
void setSummary(const std::string &);
std::string summary() const;
void setDescription(const std::string &);
std::string description() const;
void setStatus(Status);
Status status() const;
//TODO Contacts
void setAttendees(const std::vector<Attendee> &);
std::vector<Attendee> attendees() const;
void setAttachments(const std::vector<Attachment> &);
std::vector<Attachment> attachments() const;
void setCustomProperties(const std::vector<CustomProperty> &);
std::vector<CustomProperty> customProperties() const;
private:
struct Private;
boost::scoped_ptr<Private> d;
};
}
#endif

File Metadata

Mime Type
text/x-c++
Expires
Sat, Apr 4, 5:58 AM (1 w, 1 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
81/37/444ca3831c14e25e7e29de67a903
Default Alt Text
kolabjournal.h (2 KB)

Event Timeline