diff options
author | Marcelo Lira <marcelo.lira@openbossa.org> | 2010-02-18 17:40:38 -0300 |
---|---|---|
committer | Marcelo Lira <marcelo.lira@openbossa.org> | 2010-02-18 17:50:29 -0300 |
commit | 985d583110b9175d8b98fcdeaa2e0d83f3cc566f (patch) | |
tree | e381790680968bcdf7f7033dbc3755a4ec4b8e01 /tests/libother | |
parent | d55111e3521728eee0b85eac5c3054a3901e8044 (diff) | |
download | shiboken-985d583110b9175d8b98fcdeaa2e0d83f3cc566f.tar.gz shiboken-985d583110b9175d8b98fcdeaa2e0d83f3cc566f.tar.xz shiboken-985d583110b9175d8b98fcdeaa2e0d83f3cc566f.zip |
Adds test for cast operator for a class in a different module.
The new test adds a Number class to test library libother which defines
an cast operator to Str, from libsample. The unit test tries to build
an Str object passing an Number parameter.
Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'tests/libother')
-rw-r--r-- | tests/libother/CMakeLists.txt | 1 | ||||
-rw-r--r-- | tests/libother/number.cpp | 48 | ||||
-rw-r--r-- | tests/libother/number.h | 54 |
3 files changed, 103 insertions, 0 deletions
diff --git a/tests/libother/CMakeLists.txt b/tests/libother/CMakeLists.txt index be64a0eb..de589ac3 100644 --- a/tests/libother/CMakeLists.txt +++ b/tests/libother/CMakeLists.txt @@ -1,6 +1,7 @@ project(libother) set(libother_SRC +number.cpp otherderived.cpp ) diff --git a/tests/libother/number.cpp b/tests/libother/number.cpp new file mode 100644 index 00000000..0c64def6 --- /dev/null +++ b/tests/libother/number.cpp @@ -0,0 +1,48 @@ +/* + * This file is part of the Shiboken Python Binding Generator project. + * + * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). + * + * Contact: PySide team <contact@pyside.org> + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * version 2.1 as published by the Free Software Foundation. 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. + * + * As a special exception to the GNU Lesser General Public License + * version 2.1, the object code form of a "work that uses the Library" + * may incorporate material from a header file that is part of the + * Library. You may distribute such object code under terms of your + * choice, provided that the incorporated material (i) does not exceed + * more than 5% of the total size of the Library; and (ii) is limited to + * numerical parameters, data structure layouts, accessors, macros, + * inline functions and templates. + * + * 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, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + * 02110-1301 USA + */ + +#include "number.h" +#include <cstring> +#include <sstream> + +using namespace std; + +Str +Number::toStr() const +{ + ostringstream in; + in << m_value; + return in.str().c_str(); +} + diff --git a/tests/libother/number.h b/tests/libother/number.h new file mode 100644 index 00000000..bbbd830b --- /dev/null +++ b/tests/libother/number.h @@ -0,0 +1,54 @@ +/* + * This file is part of the Shiboken Python Binding Generator project. + * + * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). + * + * Contact: PySide team <contact@pyside.org> + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * version 2.1 as published by the Free Software Foundation. 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. + * + * As a special exception to the GNU Lesser General Public License + * version 2.1, the object code form of a "work that uses the Library" + * may incorporate material from a header file that is part of the + * Library. You may distribute such object code under terms of your + * choice, provided that the incorporated material (i) does not exceed + * more than 5% of the total size of the Library; and (ii) is limited to + * numerical parameters, data structure layouts, accessors, macros, + * inline functions and templates. + * + * 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, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + * 02110-1301 USA + */ + +#ifndef NUMBER_H +#define NUMBER_H + +#include "libothermacros.h" +#include "str.h" + +class LIBOTHER_API Number +{ +public: + explicit Number(int value) : m_value(value) {}; + int value() { return m_value; } + + Str toStr() const; + operator Str() const { return toStr(); } + +protected: + int m_value; +}; +#endif // NUMBER_H + |