aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/tests/libsample/modifications.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken2/tests/libsample/modifications.cpp')
-rw-r--r--sources/shiboken2/tests/libsample/modifications.cpp186
1 files changed, 0 insertions, 186 deletions
diff --git a/sources/shiboken2/tests/libsample/modifications.cpp b/sources/shiboken2/tests/libsample/modifications.cpp
deleted file mode 100644
index 627d17b45..000000000
--- a/sources/shiboken2/tests/libsample/modifications.cpp
+++ /dev/null
@@ -1,186 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the test suite of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:GPL-EXCEPT$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include <iostream>
-#include "modifications.h"
-#include "objecttype.h"
-
-using namespace std;
-
-Modifications::Modifications()
-{
- m_object = new ObjectType();
- m_object->setObjectName("MyObject");
-}
-
-Modifications::~Modifications()
-{
- delete m_object;
-}
-
-std::pair<double, double>
-Modifications::pointToPair(Point pt, bool* ok)
-{
- std::pair<double, double> retval(pt.x(), pt.y());
- *ok = true;
- return retval;
-}
-
-double
-Modifications::multiplyPointCoordsPlusValue(bool* ok, Point pt, double value)
-{
- double retval = (pt.x() * pt.y()) + value;
- *ok = true;
- return retval;
-}
-
-int
-Modifications::doublePlus(int value, int plus)
-{
- return (2 * value) + plus;
-}
-
-int
-Modifications::power(int base, int exponent)
-{
- if (exponent == 0)
- return 1;
- int retval = base;
- for (int i = 1; i < exponent; i++)
- retval = retval * base;
- return retval;
-}
-
-int
-Modifications::timesTen(int number)
-{
- return number * 10;
-}
-
-int
-Modifications::increment(int number)
-{
- return ++number;
-}
-
-void
-Modifications::exclusiveCppStuff()
-{
- cout << __FUNCTION__ << endl;
-}
-
-int
-Modifications::cppMultiply(int a, int b)
-{
- return a * b;
-}
-
-const char*
-Modifications::className()
-{
- return "Modifications";
-}
-
-Point
-Modifications::sumPointArray(int arraySize, const Point pointArray[])
-{
- Point point;
- for (int i = 0; i < arraySize; ++i)
- point = point + pointArray[i];
- return point;
-}
-
-int
-Modifications::getSize(const void* data, int size)
-{
- (void)data;
- return size;
-}
-
-int
-Modifications::sumPointCoordinates(const Point* point)
-{
- return point->x() + point->y();
-}
-
-double
-Modifications::differenceOfPointCoordinates(const Point* pt, bool* ok)
-{
- if (!pt) {
- *ok = false;
- return 0.0;
- }
- *ok = true;
- double result = pt->x() - pt->y();
- if (result < 0)
- result = result * -1.0;
- return result;
-}
-
-bool
-Modifications::nonConversionRuleForArgumentWithDefaultValue(ObjectType** object)
-{
- if (object)
- *object = m_object;
- return true;
-}
-
-void Modifications::setEnumValue(TestEnum e)
-{
- m_enumValue = e;
-}
-
-Modifications::TestEnum Modifications::enumValue() const
-{
- return m_enumValue;
-}
-
-Modifications::TestEnum Modifications::defaultEnumValue() const
-{
- return TestEnumValue2;
-}
-
-bool Modifications::wasGetAttroCalled() const
-{
- return m_getAttroCalled;
-}
-
-void Modifications::notifyGetAttroCalled()
-{
- m_getAttroCalled = true;
-}
-
-bool Modifications::wasSetAttroCalled() const
-{
- return m_setAttroCalled;
-}
-
-void Modifications::notifySetAttroCalled()
-{
- m_setAttroCalled = true;
-}