/usr/include/kolab/mimeobject.h is in libkolab-dev 0.5.0-0ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | /*
* Copyright (C) 2012 Sofia Balicka <balicka@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 MIMEOBJECT_H
#define MIMEOBJECT_H
#ifndef SWIG
#include "kolab_export.h"
#else
/* No export/import SWIG interface files */
#define KOLAB_EXPORT
#endif
#include <kolabformat.h>
#include "kolabdefinitions.h"
namespace Kolab
{
class KOLAB_EXPORT MIMEObject
{
public:
MIMEObject();
std::string writeEvent(const Kolab::Event &event, Version version, const std::string &productId = std::string());
Kolab::Event readEvent(const std::string &s);
std::string writeTodo(const Kolab::Todo &todo, Version version, const std::string &productId = std::string());
Kolab::Todo readTodo(const std::string &s);
std::string writeJournal(const Kolab::Journal &journal, Version version, const std::string &productId = std::string());
Kolab::Journal readJournal(const std::string &s);
std::string writeNote(const Kolab::Note ¬e, Version version, const std::string &productId = std::string());
Kolab::Note readNote(const std::string &s);
std::string writeContact(const Kolab::Contact &contact, Version version, const std::string &productId = std::string());
Kolab::Contact readContact(const std::string &s);
std::string writeDistlist(const Kolab::DistList &distlist, Version version, const std::string &productId = std::string());
Kolab::DistList readDistlist(const std::string &s);
};
}
#endif
|