/usr/include/kolab/commonconversion.h is in libkolab-dev 1.0.2-10ubuntu6.
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 | /*
* 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 KOLABCOMMONCONVERSION_H
#define KOLABCOMMONCONVERSION_H
#include "kolab_export.h"
#include <kdatetime.h>
#include <QStringList>
#include <kolabcontainers.h>
namespace Kolab {
namespace Conversion {
KOLAB_EXPORT KDateTime toDate(const Kolab::cDateTime &dt);
KOLAB_EXPORT cDateTime fromDate(const KDateTime &dt);
QStringList toStringList(const std::vector<std::string> &l);
std::vector<std::string> fromStringList(const QStringList &l);
/**
* Returns a UTC, Floating Time or Timezone
*/
KDateTime::Spec getTimeSpec(bool isUtc, const std::string &timezone);
QUrl toMailto(const std::string &email, const std::string &name = std::string());
std::string fromMailto(const QUrl &mailtoUri, std::string &name);
QPair<std::string, std::string> fromMailto(const std::string &mailto);
inline std::string toStdString(const QString &s)
{
return std::string(s.toUtf8().constData());
}
inline QString fromStdString(const std::string &s)
{
return QString::fromUtf8(s.c_str());
}
};
};
#endif
|