From 2d641d9293e6dd0c0275ee97d1773cd836c089f8 Mon Sep 17 00:00:00 2001 From: Wolf Bergenheim Date: Wed, 22 Sep 2010 12:20:37 +0300 Subject: Tagged files with LGPL (except for mediaoverrides, since it will be replaced) --- libresourceqt/include/qt4/policy/audio-resource.h | 21 +++++++++++++++++++++ libresourceqt/include/qt4/policy/resource-set.h | 21 +++++++++++++++++++++ libresourceqt/include/qt4/policy/resource.h | 21 +++++++++++++++++++++ libresourceqt/include/qt4/policy/resources.h | 21 +++++++++++++++++++++ libresourceqt/libresourceqt.pro | 21 +++++++++++++++++++++ libresourceqt/src/audio-resource.cpp | 21 +++++++++++++++++++++ libresourceqt/src/resource-engine.cpp | 21 +++++++++++++++++++++ libresourceqt/src/resource-engine.h | 21 +++++++++++++++++++++ libresourceqt/src/resource-set.cpp | 21 +++++++++++++++++++++ libresourceqt/src/resource.cpp | 21 +++++++++++++++++++++ libresourceqt/src/resources.cpp | 21 +++++++++++++++++++++ 11 files changed, 231 insertions(+) (limited to 'libresourceqt') diff --git a/libresourceqt/include/qt4/policy/audio-resource.h b/libresourceqt/include/qt4/policy/audio-resource.h index 4da4b30..27ffac6 100644 --- a/libresourceqt/include/qt4/policy/audio-resource.h +++ b/libresourceqt/include/qt4/policy/audio-resource.h @@ -1,3 +1,24 @@ +/************************************************************************* +This file is part of libresourceqt + +Copyright (C) 2010 Nokia Corporation. + +This library is free software; you can redistribute +it and/or modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation +version 2.1 of the License. + +This library 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 library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 +USA. +*************************************************************************/ + #ifndef AUDIO_RESOURCE_H #define AUDIO_RESOURCE_H diff --git a/libresourceqt/include/qt4/policy/resource-set.h b/libresourceqt/include/qt4/policy/resource-set.h index 3d18ac6..7414a40 100644 --- a/libresourceqt/include/qt4/policy/resource-set.h +++ b/libresourceqt/include/qt4/policy/resource-set.h @@ -1,3 +1,24 @@ +/************************************************************************* +This file is part of libresourceqt + +Copyright (C) 2010 Nokia Corporation. + +This library is free software; you can redistribute +it and/or modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation +version 2.1 of the License. + +This library 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 library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 +USA. +*************************************************************************/ + #ifndef RESOURCE_SET_H #define RESOURCE_SET_H diff --git a/libresourceqt/include/qt4/policy/resource.h b/libresourceqt/include/qt4/policy/resource.h index 7f10b97..1748a92 100644 --- a/libresourceqt/include/qt4/policy/resource.h +++ b/libresourceqt/include/qt4/policy/resource.h @@ -1,3 +1,24 @@ +/************************************************************************* +This file is part of libresourceqt + +Copyright (C) 2010 Nokia Corporation. + +This library is free software; you can redistribute +it and/or modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation +version 2.1 of the License. + +This library 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 library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 +USA. +*************************************************************************/ + #ifndef RESOURCE_H #define RESOURCE_H diff --git a/libresourceqt/include/qt4/policy/resources.h b/libresourceqt/include/qt4/policy/resources.h index acd816f..cf5efa3 100644 --- a/libresourceqt/include/qt4/policy/resources.h +++ b/libresourceqt/include/qt4/policy/resources.h @@ -1,3 +1,24 @@ +/************************************************************************* +This file is part of libresourceqt + +Copyright (C) 2010 Nokia Corporation. + +This library is free software; you can redistribute +it and/or modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation +version 2.1 of the License. + +This library 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 library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 +USA. +*************************************************************************/ + #ifndef RESOURCES_H #define RESOURCES_H diff --git a/libresourceqt/libresourceqt.pro b/libresourceqt/libresourceqt.pro index 8befa6b..36b2036 100644 --- a/libresourceqt/libresourceqt.pro +++ b/libresourceqt/libresourceqt.pro @@ -1,3 +1,24 @@ +############################################################################## +# This file is part of libresourceqt # +# # +# Copyright (C) 2010 Nokia Corporation. # +# # +# This library is free software; you can redistribute # +# it and/or modify it under the terms of the GNU Lesser General Public # +# License as published by the Free Software Foundation # +# version 2.1 of the License. # +# # +# This library 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 library; if not, write to the Free Software # +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 # +# USA. # +############################################################################## + include(../common.pri) TEMPLATE = lib TARGET = resourceqt diff --git a/libresourceqt/src/audio-resource.cpp b/libresourceqt/src/audio-resource.cpp index 10fe7e5..c4ecb1f 100644 --- a/libresourceqt/src/audio-resource.cpp +++ b/libresourceqt/src/audio-resource.cpp @@ -1,3 +1,24 @@ +/************************************************************************* +This file is part of libresourceqt + +Copyright (C) 2010 Nokia Corporation. + +This library is free software; you can redistribute +it and/or modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation +version 2.1 of the License. + +This library 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 library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 +USA. +*************************************************************************/ + #include using namespace ResourcePolicy; diff --git a/libresourceqt/src/resource-engine.cpp b/libresourceqt/src/resource-engine.cpp index e040562..f5951f3 100644 --- a/libresourceqt/src/resource-engine.cpp +++ b/libresourceqt/src/resource-engine.cpp @@ -1,3 +1,24 @@ +/************************************************************************* +This file is part of libresourceqt + +Copyright (C) 2010 Nokia Corporation. + +This library is free software; you can redistribute +it and/or modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation +version 2.1 of the License. + +This library 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 library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 +USA. +*************************************************************************/ + #include "resource-engine.h" #include diff --git a/libresourceqt/src/resource-engine.h b/libresourceqt/src/resource-engine.h index 58e071b..66b37bd 100644 --- a/libresourceqt/src/resource-engine.h +++ b/libresourceqt/src/resource-engine.h @@ -1,3 +1,24 @@ +/************************************************************************* +This file is part of libresourceqt + +Copyright (C) 2010 Nokia Corporation. + +This library is free software; you can redistribute +it and/or modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation +version 2.1 of the License. + +This library 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 library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 +USA. +*************************************************************************/ + #ifndef RESOURCE_ENGINE_H #define RESOURCE_ENGINE_H diff --git a/libresourceqt/src/resource-set.cpp b/libresourceqt/src/resource-set.cpp index 6cbee5f..8b46664 100644 --- a/libresourceqt/src/resource-set.cpp +++ b/libresourceqt/src/resource-set.cpp @@ -1,3 +1,24 @@ +/************************************************************************* +This file is part of libresourceqt + +Copyright (C) 2010 Nokia Corporation. + +This library is free software; you can redistribute +it and/or modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation +version 2.1 of the License. + +This library 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 library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 +USA. +*************************************************************************/ + #include #include "resource-engine.h" using namespace ResourcePolicy; diff --git a/libresourceqt/src/resource.cpp b/libresourceqt/src/resource.cpp index d288ae6..000a190 100644 --- a/libresourceqt/src/resource.cpp +++ b/libresourceqt/src/resource.cpp @@ -1,3 +1,24 @@ +/************************************************************************* +This file is part of libresourceqt + +Copyright (C) 2010 Nokia Corporation. + +This library is free software; you can redistribute +it and/or modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation +version 2.1 of the License. + +This library 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 library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 +USA. +*************************************************************************/ + #include using namespace ResourcePolicy; diff --git a/libresourceqt/src/resources.cpp b/libresourceqt/src/resources.cpp index 404d634..2376984 100644 --- a/libresourceqt/src/resources.cpp +++ b/libresourceqt/src/resources.cpp @@ -1,3 +1,24 @@ +/************************************************************************* +This file is part of libresourceqt + +Copyright (C) 2010 Nokia Corporation. + +This library is free software; you can redistribute +it and/or modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation +version 2.1 of the License. + +This library 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 library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 +USA. +*************************************************************************/ + #include using namespace ResourcePolicy; -- cgit v1.2.3