summaryrefslogtreecommitdiffstats
path: root/src/messaging/qmessagefoldersortorder_stub.cpp
diff options
context:
space:
mode:
authorDon Sanders <don.sanders@nokia.com>2010-02-16 18:48:41 +1000
committerDon Sanders <don.sanders@nokia.com>2010-02-16 18:48:41 +1000
commitcd02ce781874e6e1431a5cc651be03927213ccee (patch)
tree631bee7c0b6ceb8f23d08bb5d63d24098e41245e /src/messaging/qmessagefoldersortorder_stub.cpp
parent826748fc8a0ff800857f2b1fbb941b1c4f383c15 (diff)
Use stub implementation on mac (as well as maemo)
Rename stub implementations to *_stub.cpp
Diffstat (limited to 'src/messaging/qmessagefoldersortorder_stub.cpp')
-rw-r--r--src/messaging/qmessagefoldersortorder_stub.cpp105
1 files changed, 105 insertions, 0 deletions
diff --git a/src/messaging/qmessagefoldersortorder_stub.cpp b/src/messaging/qmessagefoldersortorder_stub.cpp
new file mode 100644
index 0000000000..56a239aa13
--- /dev/null
+++ b/src/messaging/qmessagefoldersortorder_stub.cpp
@@ -0,0 +1,105 @@
+/****************************************************************************
+**
+** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the Qt Mobility Components.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the Technology Preview License Agreement accompanying
+** this package.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+#include "qmessagefoldersortorder.h"
+#include "qmessagefoldersortorder_p.h"
+
+QTM_BEGIN_NAMESPACE
+
+QMessageFolderSortOrder::QMessageFolderSortOrder()
+{
+}
+
+QMessageFolderSortOrder::QMessageFolderSortOrder(const QMessageFolderSortOrder &other)
+{
+ Q_UNUSED(other)
+}
+
+QMessageFolderSortOrder::~QMessageFolderSortOrder()
+{
+}
+
+QMessageFolderSortOrder& QMessageFolderSortOrder::operator=(const QMessageFolderSortOrder& other)
+{
+ Q_UNUSED(other)
+ return *this; // stub
+}
+
+bool QMessageFolderSortOrder::isEmpty() const
+{
+ return false; // stub
+}
+
+bool QMessageFolderSortOrder::isSupported() const
+{
+ return true; // stub
+}
+
+QMessageFolderSortOrder QMessageFolderSortOrder::operator+(const QMessageFolderSortOrder& other) const
+{
+ Q_UNUSED(other)
+ return QMessageFolderSortOrder(); // stub
+}
+
+QMessageFolderSortOrder& QMessageFolderSortOrder::operator+=(const QMessageFolderSortOrder& other)
+{
+ Q_UNUSED(other)
+ return *this; // stub
+}
+
+bool QMessageFolderSortOrder::operator==(const QMessageFolderSortOrder& other) const
+{
+ Q_UNUSED(other)
+ return false; // stub
+}
+
+QMessageFolderSortOrder QMessageFolderSortOrder::byName(Qt::SortOrder order)
+{
+ Q_UNUSED(order)
+ return QMessageFolderSortOrder(); // stub
+}
+
+QMessageFolderSortOrder QMessageFolderSortOrder::byPath(Qt::SortOrder order)
+{
+ Q_UNUSED(order)
+ return QMessageFolderSortOrder(); // stub
+}
+
+QTM_END_NAMESPACE