diff options
author | Marcelo Lira <marcelo.lira@openbossa.org> | 2009-12-08 11:24:48 -0300 |
---|---|---|
committer | Marcelo Lira <marcelo.lira@openbossa.org> | 2009-12-29 15:42:30 -0300 |
commit | ef1d065f23b6e9c206cb44b5fd2c36708bb238ca (patch) | |
tree | e5329086a9dc5c4e8dfaa9d92af42ea4b86cd0e2 /tests/libother | |
parent | e67ea3ffab7c161785636b78c41f3b624ec0f5ab (diff) | |
download | shiboken-ef1d065f23b6e9c206cb44b5fd2c36708bb238ca.tar.gz shiboken-ef1d065f23b6e9c206cb44b5fd2c36708bb238ca.tar.xz shiboken-ef1d065f23b6e9c206cb44b5fd2c36708bb238ca.zip |
Adds "libother" as a new test library.
New test library and corresponding binding were added to check for
intermodule problems. The CMake linkage type for the modules had to
be changed from MODULE to SHARED.
Reviewed by Hugo Parente <hugo.lima@openbossa.org>
Diffstat (limited to 'tests/libother')
-rw-r--r-- | tests/libother/CMakeLists.txt | 15 | ||||
-rw-r--r-- | tests/libother/otherderived.cpp | 61 | ||||
-rw-r--r-- | tests/libother/otherderived.h | 57 |
3 files changed, 133 insertions, 0 deletions
diff --git a/tests/libother/CMakeLists.txt b/tests/libother/CMakeLists.txt new file mode 100644 index 00000000..be64a0eb --- /dev/null +++ b/tests/libother/CMakeLists.txt @@ -0,0 +1,15 @@ +project(libother) + +set(libother_SRC +otherderived.cpp +) + +add_definitions("-DLIBOTHER_BUILD") +add_library(libother SHARED ${libother_SRC}) +set_property(TARGET libother PROPERTY PREFIX "") + +include_directories(${CMAKE_CURRENT_SOURCE_DIR} + ${libsample_SOURCE_DIR} + ${libsample_SOURCE_DIR}/..) +target_link_libraries(libother libsample) + diff --git a/tests/libother/otherderived.cpp b/tests/libother/otherderived.cpp new file mode 100644 index 00000000..10529ee2 --- /dev/null +++ b/tests/libother/otherderived.cpp @@ -0,0 +1,61 @@ +/* + * This file is part of the Shiboken Python Binding Generator project. + * + * Copyright (C) 2009 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 "otherderived.h" + +OtherDerived::OtherDerived(int id) : Abstract(id) +{ +} + +OtherDerived::~OtherDerived() +{ +} + +Abstract* +OtherDerived::createObject() +{ + static int id = 100; + return new OtherDerived(id++); +} + +void +OtherDerived::pureVirtual() +{ +} + +void +OtherDerived::unpureVirtual() +{ +} + diff --git a/tests/libother/otherderived.h b/tests/libother/otherderived.h new file mode 100644 index 00000000..e449e29a --- /dev/null +++ b/tests/libother/otherderived.h @@ -0,0 +1,57 @@ +/* + * This file is part of the Shiboken Python Binding Generator project. + * + * Copyright (C) 2009 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 OTHERDERIVED_H +#define OTHERDERIVED_H + +#include <libsample/libsamplemacros.h> +#include <libsample/abstract.h> + +class LIBSAMPLE_API OtherDerived : public Abstract +{ +public: + OtherDerived(int id = -1); + virtual ~OtherDerived(); + virtual void pureVirtual(); + virtual void unpureVirtual(); + + // factory method + static Abstract* createObject(); + +protected: + const char* getClassName() { return className(); } + virtual const char* className() { return "OtherDerived"; } +}; +#endif // OTHERDERIVED_H + |