[SCM] ktp-common-internals packaging branch, master, updated. debian/15.12.1-2-1839-gf0635e9
Maximiliano Curia
maxy at moszumanska.debian.org
Mon May 9 09:04:27 UTC 2016
Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-common-internals.git;a=commitdiff;h=1eeac42
The following commit has been merged in the master branch:
commit 1eeac42ea21722b54fd5204775436af61321c245
Author: George Goldberg <grundleborg at googlemail.com>
Date: Sat Feb 13 16:35:15 2010 +0000
Add a skeleton class for TelepathyContact.
svn path=/trunk/playground/network/telepathy-integration-daemon/; revision=1089646
---
kpeople/nepomuk-feeder/CMakeLists.txt | 1 +
kpeople/nepomuk-feeder/telepathycontact.cpp | 40 ++++++++++++++++++++++++
kpeople/nepomuk-feeder/telepathycontact.h | 48 +++++++++++++++++++++++++++++
3 files changed, 89 insertions(+)
diff --git a/kpeople/nepomuk-feeder/CMakeLists.txt b/kpeople/nepomuk-feeder/CMakeLists.txt
index a6cf5df..c46fc99 100644
--- a/kpeople/nepomuk-feeder/CMakeLists.txt
+++ b/kpeople/nepomuk-feeder/CMakeLists.txt
@@ -79,6 +79,7 @@ add_subdirectory (nie)
set (telepathy_integration_daemon_SRCS
telepathyaccountmonitor.cpp
telepathyaccount.cpp
+ telepathycontact.cpp
main.cpp
)
diff --git a/kpeople/nepomuk-feeder/telepathycontact.cpp b/kpeople/nepomuk-feeder/telepathycontact.cpp
new file mode 100644
index 0000000..0fbf205
--- /dev/null
+++ b/kpeople/nepomuk-feeder/telepathycontact.cpp
@@ -0,0 +1,40 @@
+/*
+ * This file is part of telepathy-integration-daemon
+ *
+ * Copyright (C) 2010 Collabora Ltd. <info at collabora.co.uk>
+ * @author George Goldberg <george.goldberg at collabora.co.uk>
+ *
+ * This library 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 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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 library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include "telepathycontact.h"
+
+#include "telepathyaccount.h"
+
+TelepathyContact::TelepathyContact(TelepathyAccount *parent)
+ : QObject(parent),
+ m_parent(parent)
+{
+ // TODO: Implement me!
+}
+
+TelepathyContact::~TelepathyContact()
+{
+
+}
+
+
+#include "telepathycontact.moc"
+
diff --git a/kpeople/nepomuk-feeder/telepathycontact.h b/kpeople/nepomuk-feeder/telepathycontact.h
new file mode 100644
index 0000000..f3241db
--- /dev/null
+++ b/kpeople/nepomuk-feeder/telepathycontact.h
@@ -0,0 +1,48 @@
+/*
+ * This file is part of telepathy-integration-daemon
+ *
+ * Copyright (C) 2010 Collabora Ltd. <info at collabora.co.uk>
+ * @author George Goldberg <george.goldberg at collabora.co.uk>
+ *
+ * This library 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 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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 library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef TELEPATHY_INTEGRATION_DAEMON_TELEPATHYCONTACT_H
+#define TELEPATHY_INTEGRATION_DAEMON_TELEPATHYCONTACT_H
+
+#include <QtCore/QObject>
+
+class TelepathyAccount;
+
+/**
+ * This class takes care of one contact in the roster of a given telepathy account on the AM.
+ */
+class TelepathyContact : public QObject
+{
+ Q_OBJECT
+
+public:
+ explicit TelepathyContact(TelepathyAccount *parent = 0);
+ ~TelepathyContact();
+
+private:
+ Q_DISABLE_COPY(TelepathyContact);
+
+ TelepathyAccount *m_parent;
+};
+
+
+#endif // Header guard
+
--
ktp-common-internals packaging
More information about the pkg-kde-commits
mailing list