aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2009-11-11 14:13:01 -0200
committerHugo Lima <hugo.lima@openbossa.org>2009-11-11 14:13:01 -0200
commit627d4cc994ba1c122995b367e2fc63a02d02d04a (patch)
tree668bd5a0b1310b3877d033c1bda93ee5f0d2baac /libshiboken
parent0307edda4b3448cba88f221cbb60402cbb1adaeb (diff)
Removed useless file container.cpp/h
Diffstat (limited to 'libshiboken')
-rw-r--r--libshiboken/CMakeLists.txt1
-rw-r--r--libshiboken/containers.cpp41
-rw-r--r--libshiboken/containers.h47
-rw-r--r--libshiboken/shiboken.h1
4 files changed, 0 insertions, 90 deletions
diff --git a/libshiboken/CMakeLists.txt b/libshiboken/CMakeLists.txt
index e4c6aebc3..40d6a1203 100644
--- a/libshiboken/CMakeLists.txt
+++ b/libshiboken/CMakeLists.txt
@@ -11,7 +11,6 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/shiboken.pc.in
set(libshiboken_SRC
basewrapper.cpp
-containers.cpp
helper.cpp
pyenum.cpp
bindingmanager.cpp
diff --git a/libshiboken/containers.cpp b/libshiboken/containers.cpp
deleted file mode 100644
index 6317fceda..000000000
--- a/libshiboken/containers.cpp
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * This file is part of the Shiboken Python Bindings 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 "containers.h"
-
-namespace Shiboken
-{
-
-
-} // namespace Shiboken
diff --git a/libshiboken/containers.h b/libshiboken/containers.h
deleted file mode 100644
index 3bd4efa40..000000000
--- a/libshiboken/containers.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * This file is part of the Shiboken Python Bindings 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 CONTAINERS_H
-#define CONTAINERS_H
-
-#include <Python.h>
-
-namespace Shiboken
-{
-
-
-} // namespace Shiboken
-
-#endif // CONTAINERS_H
-
diff --git a/libshiboken/shiboken.h b/libshiboken/shiboken.h
index baaf3d95d..33a77c50b 100644
--- a/libshiboken/shiboken.h
+++ b/libshiboken/shiboken.h
@@ -37,7 +37,6 @@
#include <Python.h>
#include <basewrapper.h>
-#include <containers.h>
#include <conversions.h>
#include <helper.h>
#include <pyenum.h>