summaryrefslogtreecommitdiff
path: root/TelepathyQt4Yell/Models/contact-model-item.h
diff options
context:
space:
mode:
Diffstat (limited to 'TelepathyQt4Yell/Models/contact-model-item.h')
-rw-r--r--TelepathyQt4Yell/Models/contact-model-item.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/TelepathyQt4Yell/Models/contact-model-item.h b/TelepathyQt4Yell/Models/contact-model-item.h
deleted file mode 100644
index 4dbb5b1..0000000
--- a/TelepathyQt4Yell/Models/contact-model-item.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * This file is part of TelepathyQt4Yell Models
- *
- * Copyright (C) 2010 Collabora Ltd. <http://www.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 _TelepathyQt4Yell_Models_contact_model_item_h_HEADER_GUARD_
-#define _TelepathyQt4Yell_Models_contact_model_item_h_HEADER_GUARD_
-
-#ifndef IN_TELEPATHY_QT4_YELL_MODELS_HEADER
-#error IN_TELEPATHY_QT4_YELL_MODELS_HEADER
-#endif
-
-#include <TelepathyQt4Yell/Models/TreeNode>
-
-#include <TelepathyQt4/Types>
-
-namespace Tpy
-{
-
-class TELEPATHY_QT4_YELL_MODELS_EXPORT ContactModelItem : public TreeNode
-{
- Q_OBJECT
- Q_DISABLE_COPY(ContactModelItem)
-
-public:
- ContactModelItem(const Tp::ContactPtr &contact);
- virtual ~ContactModelItem();
-
- Q_INVOKABLE virtual QVariant data(int role) const;
- Q_INVOKABLE virtual bool setData(int role, const QVariant &value);
-
- Tp::ContactPtr contact() const;
-
-Q_SIGNALS:
- void capabilitiesChanged();
-
-public Q_SLOTS:
- void onChanged();
- void onCapabilitiesChanged();
-
-private:
- struct Private;
- friend struct Private;
- Private *mPriv;
-};
-
-}
-
-#endif // _TelepathyQt4Yell_Models_contact_model_item_h_HEADER_GUARD_