From 1eb196c27ba3328e297aa23e62e93440d6f14f43 Mon Sep 17 00:00:00 2001 From: Aleksandra Kos <aleksandra.kos@unibas.ch> Date: Thu, 17 Feb 2011 16:19:27 +0100 Subject: [PATCH 01/59] small cosmetic changes to the documentation Nothing fancy, just testing push/pull access --- modules/mol/base/doc/editors.rst | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/mol/base/doc/editors.rst b/modules/mol/base/doc/editors.rst index 90fff6941..ca9856360 100644 --- a/modules/mol/base/doc/editors.rst +++ b/modules/mol/base/doc/editors.rst @@ -28,9 +28,11 @@ zero, the dependent infomation is updated. In Python, one can not rely on the destructors being called. It is adviced to always put a call to :meth:`XCSEditor.UpdateICS` or -:meth:`ICSEditor.UpdateXCS` when the editing is finished. Alternatively, starting from Python version 2.6, one can use the -`with <http://docs.python.org/reference/compound_stmts.html#with>`_ statement -to make sure the destructor are called and the dependent information is updated. +:meth:`ICSEditor.UpdateXCS` when the editing is finished. Alternatively, +starting from Python version 2.6, one can use the \ +`with <http://docs.python.org/reference/compound_stmts.html#with>`_ +statement to make sure the destructor are called and the dependent information +is updated. Basic Editing Operations -- GitLab From c0581093bedfb32bdd642ff49a9c1ddbad24a287 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Tue, 8 Feb 2011 10:48:51 +0100 Subject: [PATCH 02/59] fix some typos found by Alexandra Kos --- modules/doc/intro-01.rst | 2 +- modules/mol/base/doc/query.rst | 2 +- modules/seq/base/doc/seq.rst | 9 +++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/modules/doc/intro-01.rst b/modules/doc/intro-01.rst index 087a80949..cca9e786b 100644 --- a/modules/doc/intro-01.rst +++ b/modules/doc/intro-01.rst @@ -24,7 +24,7 @@ To load a PDB file, simply type fragment=io.LoadPDB('/path/to/examples/code_fragments/entity/fragment.pdb') This will load the fragment from the specified file 'fragment.pdb' and store the -result in fragment. The :func:`~ost.io.LoadPDB` has many option, which, for +result in fragment. The :func:`~ost.io.LoadPDB` has many options, which, for simplicity will not be discussed here. If you want to know more about the function, type: diff --git a/modules/mol/base/doc/query.rst b/modules/mol/base/doc/query.rst index 42b1cc057..e47085dcb 100644 --- a/modules/mol/base/doc/query.rst +++ b/modules/mol/base/doc/query.rst @@ -18,7 +18,7 @@ selections in a convenient way. Selections are carried out mainly by calling the arginines=model.Select('rname=ARG') -A simple selection query (called a predicate) consists in a property (here, +A simple selection query (called a predicate) consists of a property (here, `rname`), a comparison operator (here, `=`) and an argument (here, `ARG`). The return value of a call to the :meth:`EntityHandle.Select` method is always an :class:`EntityView`. The :class:`EntityView` always contains a full hierarchy of diff --git a/modules/seq/base/doc/seq.rst b/modules/seq/base/doc/seq.rst index 243ec0d49..ade28f583 100644 --- a/modules/seq/base/doc/seq.rst +++ b/modules/seq/base/doc/seq.rst @@ -17,10 +17,11 @@ Attaching Structures to Sequences -------------------------------------------------------------------------------- -Being a structural biology framework, it is not surprising that the sequence -classes have been designed to work together with structural data. Each sequence -can have an attached :class:`~mol.EntityView` allowing for fast mapping between -residues in the entity view and position in the sequence. +As OpenStructure is a computational structural biology framework, it is not +surprising that the sequence classes have been designed to work together with +structural data. Each sequence can have an attached :class:`~mol.EntityView` +allowing for fast mapping between residues in the entity view and position in +the sequence. .. _sequence-offset: -- GitLab From 865fea2aa2358e6e82abbe3670dd99ea57a19aa4 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Fri, 18 Feb 2011 14:10:04 +0100 Subject: [PATCH 03/59] some more exports for gfx-related stuff --- modules/gfx/pymod/export_gfx_node.cc | 15 +++++++++++++++ modules/gfx/pymod/export_scene.cc | 1 + modules/gui/pymod/export_tool.cc | 4 ---- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/modules/gfx/pymod/export_gfx_node.cc b/modules/gfx/pymod/export_gfx_node.cc index 07195c100..3bab8f34c 100644 --- a/modules/gfx/pymod/export_gfx_node.cc +++ b/modules/gfx/pymod/export_gfx_node.cc @@ -17,12 +17,20 @@ // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA //------------------------------------------------------------------------------ #include <boost/python.hpp> +#include <boost/python/suite/indexing/vector_indexing_suite.hpp> + using namespace boost::python; +#include <ost/export_helper/vector.hh> #include <ost/gfx/gfx_node.hh> + + using namespace ost; using namespace ost::gfx; + +const GfxNodeVector& (GfxNode::*get_children)() const=&GfxNode::GetChildren; + void export_GfxNode() { void (GfxNode::* node_add1)(GfxObjP) = &GfxNode::Add; @@ -31,6 +39,10 @@ void export_GfxNode() void (GfxNode::* node_rem2)(GfxNodeP) = &GfxNode::Remove; void (GfxNode::* node_rem3)(const String&) = &GfxNode::Remove; + class_<GfxNodeVector>("GfxNodeList", init<>()) + .def(vector_indexing_suite<GfxNodeVector, true>()) + .def(ost::VectorAdditions<GfxNodeVector>()) + ; class_<GfxNode, GfxNodeP, boost::noncopyable>("GfxNode", init<const String&>()) .def("GetName",&GfxNode::GetName) @@ -43,5 +55,8 @@ void export_GfxNode() .add_property("name", &GfxNode::GetName) .def("Remove",node_rem2) .def("Remove",node_rem3) + .add_property("parent", &GfxNode::GetParent) + .add_property("children", make_function(get_children, + return_value_policy<copy_const_reference>())) ; } diff --git a/modules/gfx/pymod/export_scene.cc b/modules/gfx/pymod/export_scene.cc index c97fb1114..bf590ea04 100644 --- a/modules/gfx/pymod/export_scene.cc +++ b/modules/gfx/pymod/export_scene.cc @@ -182,6 +182,7 @@ void export_Scene() .def("StopOffscreenMode",&Scene::StopOffscreenMode) .def("SetShadingMode",&Scene::SetShadingMode) .def("SetBeacon",&Scene::SetBeacon) + .add_property("root_node", &Scene::GetRootNode) .def("SetBeaconOff",&Scene::SetBeaconOff) .def("__getitem__",scene_getitem) ; diff --git a/modules/gui/pymod/export_tool.cc b/modules/gui/pymod/export_tool.cc index 1d050038f..11ee78b91 100644 --- a/modules/gui/pymod/export_tool.cc +++ b/modules/gui/pymod/export_tool.cc @@ -250,9 +250,5 @@ void export_Tool() .def("GetQObject",&get_py_qobject<ToolOptionsWin>) .add_property("qobject", &get_py_qobject<ToolOptionsWin>) ; - - class_<gfx::NodePtrList>("NodePtrList", init<>()) - .def(vector_indexing_suite<gfx::NodePtrList, true >()) - ; } -- GitLab From d337d5bda1bd90d0828934910c78e3b2dc21c472 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Fri, 18 Feb 2011 17:21:42 +0100 Subject: [PATCH 04/59] added glob-style access to GfxNodes --- modules/gfx/pymod/__init__.py | 44 +++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/modules/gfx/pymod/__init__.py b/modules/gfx/pymod/__init__.py index 23dced4ec..4dfc0fd64 100644 --- a/modules/gfx/pymod/__init__.py +++ b/modules/gfx/pymod/__init__.py @@ -140,3 +140,47 @@ def FitToScreen(gfx_ent, width=None, height=None, margin=0.01): factor_y*(1+margin)*geom.Length(sorted_axes[1]))+z_off) scene.SetRTC(rtc) + +class GfxNodeListAttrProxy: + def __init__(self, node_list, name): + self._node_list=node_list + self._name=name + + def __iter__(self): + for node in self._node_list: + yield getattr(node, self._name) + + def __call__(self, *args, **kwargs): + for node in self._node_list: + bound_method=getattr(node, self._name) + bound_method(*args, **kwargs) + +class GfxNodeListProxy(object): + def __init__(self, node_list): + self._nodes=node_list + + def __getattr__(self, name): + if name.startswith('_'): + return super(GfxNodeListProxy, self).__getattr__(name) + return GfxNodeListAttrProxy(self._nodes, name) + + def __setattr__(self, name, value): + if name.startswith('_'): + super(GfxNodeListProxy, self).__setattr__(name, value) + for node in self._nodes: + setattr(node, name, value) + +def _Match(scene, pattern="*"): + import os + import fnmatch + def _Recurse(path, node, pattern): + matches=[] + for child in node.children: + full_name=os.path.join(path, child.name) + if fnmatch.fnmatchcase(full_name, pattern): + matches.append(child) + matches.extend(_Recurse(full_name, child, pattern)) + return matches + return GfxNodeListProxy(_Recurse("", Scene().root_node, pattern)) + +SceneSingleton.__getitem__=_Match -- GitLab From 7f0829b606251136a416c385d1904a5043567540 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Tue, 15 Feb 2011 11:17:38 +0100 Subject: [PATCH 05/59] added NO_PEPTIDE_BONDS flag to ConnectAll. If set, no peptide bonds will be added. Defaults to off, of course. --- modules/conop/src/conop.cc | 12 +++++++----- modules/conop/src/conop.hh | 9 ++++++++- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/modules/conop/src/conop.cc b/modules/conop/src/conop.cc index 76b45d7bf..b1448aa8f 100644 --- a/modules/conop/src/conop.cc +++ b/modules/conop/src/conop.cc @@ -229,9 +229,10 @@ private: class Connector: public mol::EntityVisitor { public: - Connector(const BuilderP& b): + Connector(const BuilderP& b, bool peptide_bonds): builder_(b), - prev_() + prev_(), + peptide_bonds_(peptide_bonds) {} virtual bool VisitChain(const mol::ChainHandle& chain) { @@ -241,7 +242,7 @@ public: virtual bool VisitResidue(const mol::ResidueHandle& res) { builder_->ConnectAtomsOfResidue(res); - if (prev_) { + if (peptide_bonds_ && prev_) { builder_->ConnectResidueToPrev(res,prev_); } prev_=res; @@ -251,6 +252,7 @@ public: private: BuilderP builder_; mol::ResidueHandle prev_; + bool peptide_bonds_; }; class TorsionMaker: public mol::EntityVisitor @@ -270,7 +272,7 @@ private: }; } // ns -void Conopology::ConnectAll(const BuilderP& b, mol::EntityHandle eh, int flag) +void Conopology::ConnectAll(const BuilderP& b, mol::EntityHandle eh, int flags) { Profile profile_connect("ConnectAll"); LOG_DEBUG("Conopology: ConnectAll: building internal coordinate system"); @@ -280,7 +282,7 @@ void Conopology::ConnectAll(const BuilderP& b, mol::EntityHandle eh, int flag) ChemClassAssigner cca(b); eh.Apply(cca); LOG_DEBUG("Conopology: ConnectAll: connecting all bonds"); - Connector connector(b); + Connector connector(b, !(flags & NO_PEPTIDE_BONDS)); eh.Apply(connector); LOG_DEBUG("Conopology: ConnectAll: assigning all torsions"); diff --git a/modules/conop/src/conop.hh b/modules/conop/src/conop.hh index 7109c83aa..0d9fccf7b 100644 --- a/modules/conop/src/conop.hh +++ b/modules/conop/src/conop.hh @@ -26,6 +26,12 @@ namespace ost { namespace conop { + +typedef enum { + NO_PEPTIDE_BONDS=1, +} ConopFlag; + + class DLLEXPORT_OST_CONOP Conopology { typedef std::map<String,BuilderP> BuilderMap; @@ -42,7 +48,8 @@ public: does this need to live within Conopology ? */ - void ConnectAll(const BuilderP& b, mol::EntityHandle eh, int flag=0); + void ConnectAll(const BuilderP& b, mol::EntityHandle eh, + int flags=0); void RegisterBuilder(const BuilderP& b, const String& name); void SetDefaultBuilder(const String& default_name); -- GitLab From dac46e49e6616add943c93016c84dd624eeee7bd Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Tue, 15 Feb 2011 11:18:45 +0100 Subject: [PATCH 06/59] fix trace rebuilding when new atoms are added/removed. --- modules/gfx/src/entity.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/gfx/src/entity.cc b/modules/gfx/src/entity.cc index 4ee504c79..e1c3fd0a6 100644 --- a/modules/gfx/src/entity.cc +++ b/modules/gfx/src/entity.cc @@ -225,6 +225,7 @@ void Entity::Rebuild() if(update_view_) { EntityView nv=this->GetView(); + trace_.ResetView(nv); for (RendererMap::iterator i=renderer_.begin(), e=renderer_.end(); i!=e; ++i) { i->second->ClearViews(); -- GitLab From 7af4b777c7c834a31b06722cac6ae5a872686bdc Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Thu, 17 Feb 2011 09:31:26 +0100 Subject: [PATCH 07/59] improve check for uniqueness of scene node names --- examples/demos/gfx_mapslab.py | 3 ++- modules/gfx/src/gfx_node.cc | 21 +++++++++++++++++++++ modules/gfx/src/gfx_node.hh | 8 +++++++- modules/gfx/src/scene.cc | 12 ++++-------- modules/gfx/src/scene.hh | 5 ++++- modules/gfx/tests/test_gfx_node.cc | 26 +++++++++++++++++--------- 6 files changed, 55 insertions(+), 20 deletions(-) diff --git a/examples/demos/gfx_mapslab.py b/examples/demos/gfx_mapslab.py index de59b2e5d..8cc8ca334 100644 --- a/examples/demos/gfx_mapslab.py +++ b/examples/demos/gfx_mapslab.py @@ -52,6 +52,7 @@ scene.SetCenter(go1.GetCenter()) go2 = gfx.MapSlab("slab",mh,geom.Plane(go1.GetCenter(),geom.Vec3(0.0,0.0,1.0))) scene.Add(go2) -go2.ColorBy(gfx.YELLOW,gfx.GREEN,0.2,0.8) + +go2.ColorBy('HEAT_MAP',0.2,0.8) print 'Demo 4: Projecting the density of a map onto a plane...' diff --git a/modules/gfx/src/gfx_node.cc b/modules/gfx/src/gfx_node.cc index 76a513dc7..ea4b58e89 100644 --- a/modules/gfx/src/gfx_node.cc +++ b/modules/gfx/src/gfx_node.cc @@ -59,6 +59,17 @@ void GfxNode::DeepSwap(GfxNode& n) std::swap(show_,n.show_); } +bool GfxNode::IsNameAvailable(const String& name) const +{ + for (GfxNodeVector::const_iterator it =node_vector_.begin(); + it!=node_vector_.end();++it) { + if ((*it)->GetName()==name) { + return false; + } + } + return true; +} + void GfxNode::Apply(GfxNodeVisitor& v,GfxNodeVisitor::Stack st) { if(!v.VisitNode(this,st)) return; @@ -155,6 +166,16 @@ void GfxNode::RemoveAll() void GfxNode::Add(GfxNodeP node) { + if (!node) { + return; + } + if (!this->IsNameAvailable(node->GetName())) { + std::stringstream ss; + ss << "node '" << this->GetName() << "' has already a node with name '" + << node->GetName() << "'"; + throw Error(ss.str()); + } + node_vector_.push_back(node); if (!node->parent_.expired()) { node->GetParent()->Remove(node); diff --git a/modules/gfx/src/gfx_node.hh b/modules/gfx/src/gfx_node.hh index 9bec738a5..aff956475 100644 --- a/modules/gfx/src/gfx_node.hh +++ b/modules/gfx/src/gfx_node.hh @@ -75,7 +75,13 @@ class DLLEXPORT_OST_GFX GfxNode: public boost::enable_shared_from_this<GfxNode> // add a graphical object - leaf void Add(GfxObjP obj); - + + + /// \brief returns true if no scene node of the given name is a child + /// of this node. + bool IsNameAvailable(const String& name) const; + + // remove given graphical object void Remove(GfxObjP obj); diff --git a/modules/gfx/src/scene.cc b/modules/gfx/src/scene.cc index c3acaddc6..1f0abadc4 100644 --- a/modules/gfx/src/scene.cc +++ b/modules/gfx/src/scene.cc @@ -756,6 +756,8 @@ size_t Scene::GetNodeCount() const void Scene::Add(const GfxNodeP& n, bool redraw) { if(!n) return; + // even though IsNameAvailable() is called in GfxNode::Add, check here + // as well to produce error message specific to adding a node to the scene. if(!this->IsNameAvailable(n->GetName())){ throw Error("Scene already has a node with name '"+n->GetName()+"'"); } @@ -776,15 +778,9 @@ void Scene::Add(const GfxNodeP& n, bool redraw) } } -bool Scene::IsNameAvailable(String name) +bool Scene::IsNameAvailable(const String& name) const { - FindNode fn(name); - Apply(fn); - if(fn.node) { - LOG_INFO("Scene: " << name << " already exists as a scene node"); - return false; - } - return true; + return root_node_->IsNameAvailable(name); } void Scene::NodeAdded(const GfxNodeP& node) diff --git a/modules/gfx/src/scene.hh b/modules/gfx/src/scene.hh index 7df5ee56c..34e2e033a 100644 --- a/modules/gfx/src/scene.hh +++ b/modules/gfx/src/scene.hh @@ -498,8 +498,11 @@ private: void render_scene(); void render_glow(); void render_stereo(); + void do_autoslab(); - bool IsNameAvailable(String name); + + bool IsNameAvailable(const String& name) const; + }; }} // ns diff --git a/modules/gfx/tests/test_gfx_node.cc b/modules/gfx/tests/test_gfx_node.cc index 361b9a2f2..8959d3c89 100644 --- a/modules/gfx/tests/test_gfx_node.cc +++ b/modules/gfx/tests/test_gfx_node.cc @@ -75,32 +75,40 @@ BOOST_AUTO_TEST_CASE(gfx_node_add) { GfxNodeP n1(new GfxNode("1")); BOOST_CHECK_EQUAL(n1->GetParent(), GfxNodeP()); - BOOST_CHECK_EQUAL(n1->GetChildCount(), 0); + BOOST_CHECK_EQUAL(n1->GetChildCount(), size_t(0)); GfxNodeP n2(new GfxNode("2")); n1->Add(n2); BOOST_CHECK_EQUAL(n1->GetParent(), GfxNodeP()); - BOOST_CHECK_EQUAL(n1->GetChildCount(), 1); + BOOST_CHECK_EQUAL(n1->GetChildCount(), size_t(1)); BOOST_CHECK_EQUAL(n2->GetParent(), n1); - BOOST_CHECK_EQUAL(n2->GetChildCount(), 0); + BOOST_CHECK_EQUAL(n2->GetChildCount(), size_t(0)); // "move" node 2 from 1 to 3 GfxNodeP n3(new GfxNode("3")); n3->Add(n2); - BOOST_CHECK_EQUAL(n1->GetChildCount(), 0); + BOOST_CHECK_EQUAL(n1->GetChildCount(), size_t(0)); BOOST_CHECK_EQUAL(n2->GetParent(), n3); - BOOST_CHECK_EQUAL(n3->GetChildCount(), 1); + BOOST_CHECK_EQUAL(n3->GetChildCount(), size_t(1)); } +BOOST_AUTO_TEST_CASE(gfx_node_add_duplicate) +{ + GfxNodeP n1(new GfxNode("1")); + GfxNodeP n2(new GfxNode("2")); + GfxNodeP n3(new GfxNode("2")); + BOOST_CHECK_NO_THROW(n1->Add(n2)); + BOOST_CHECK_THROW(n1->Add(n3), Error); +} BOOST_AUTO_TEST_CASE(gfx_node_remove) { GfxNodeP n1(new GfxNode("1")); BOOST_CHECK_EQUAL(n1->GetParent(), GfxNodeP()); - BOOST_CHECK_EQUAL(n1->GetChildCount(), 0); + BOOST_CHECK_EQUAL(n1->GetChildCount(), size_t(0)); GfxNodeP n2(new GfxNode("2")); n1->Add(n2); n1->Remove(n2); - BOOST_CHECK_EQUAL(n1->GetChildCount(), 0); + BOOST_CHECK_EQUAL(n1->GetChildCount(), size_t(0)); BOOST_CHECK_EQUAL(n2->GetParent(), GfxNodeP()); } @@ -108,7 +116,7 @@ BOOST_AUTO_TEST_CASE(gfx_node_remove_all) { GfxNodeP n1(new GfxNode("1")); BOOST_CHECK_EQUAL(n1->GetParent(), GfxNodeP()); - BOOST_CHECK_EQUAL(n1->GetChildCount(), 0); + BOOST_CHECK_EQUAL(n1->GetChildCount(), size_t(0)); GfxNodeP n2(new GfxNode("2")); GfxNodeP n3(new GfxNode("3")); GfxNodeP n4(new GfxNode("4")); @@ -116,7 +124,7 @@ BOOST_AUTO_TEST_CASE(gfx_node_remove_all) n1->Add(n3); n1->Add(n4); n1->RemoveAll(); - BOOST_CHECK_EQUAL(n1->GetChildCount(), 0); + BOOST_CHECK_EQUAL(n1->GetChildCount(), size_t(0)); BOOST_CHECK_EQUAL(n2->GetParent(), GfxNodeP()); } -- GitLab From be6d6e3477b00424ade7026800cd9f3e6e1ce505 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Sun, 20 Feb 2011 11:16:12 +0100 Subject: [PATCH 08/59] added overload to Entity.selection that accepts a string: ent.selection='aname=CA' is equivalent to ent.selection=ent.view.Select('aname=CA') --- modules/gfx/pymod/export_entity.cc | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/modules/gfx/pymod/export_entity.cc b/modules/gfx/pymod/export_entity.cc index 83dee487c..9092a6344 100644 --- a/modules/gfx/pymod/export_entity.cc +++ b/modules/gfx/pymod/export_entity.cc @@ -185,6 +185,7 @@ void ent_apply_61(Entity* e, MapHandleColorOp& mhco, bool store){ void ent_apply_62(Entity* e, MapHandleColorOp& mhco){ e->Apply(mhco); } + #endif //OST_IMG_ENABLED RenderOptionsPtr ent_sline_opts(Entity* ent) @@ -238,6 +239,18 @@ RenderOptionsPtr ent_ltrace_opts(Entity* ent) return ent->GetOptions(RenderMode::LINE_TRACE); } +void set_selection(Entity* ent, object sel) +{ + try { + String sel_string=extract<String>(sel); + ent->SetSelection(ent->GetView().Select(sel_string)); + } catch (error_already_set& e) { + PyErr_Clear(); + mol::EntityView view=extract<mol::EntityView>(sel); + ent->SetSelection(view); + } +} + } void export_Entity() @@ -259,7 +272,7 @@ void export_Entity() .def("SetSelection",&Entity::SetSelection) .def("GetSelection",&Entity::GetSelection) .add_property("selection", &Entity::GetSelection, - &Entity::SetSelection) + &set_selection) .def("GetView", &Entity::GetView) .def("UpdateView", &Entity::UpdateView) .def("SetQuery", set_query1) -- GitLab From eecdd445e2808ce44c39ab8b4febebcdf50e3e10 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Sun, 20 Feb 2011 11:43:47 +0100 Subject: [PATCH 09/59] don't overwrite scene.__getitem__ for glob-style access to scene objects It's breaking more complexcases, e.g. scene["model"].selection=scene["model"].view.Select('aname=CA') To use the glob-style access, use scene.Match("*") --- modules/gfx/pymod/__init__.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/modules/gfx/pymod/__init__.py b/modules/gfx/pymod/__init__.py index 4dfc0fd64..5788da8cf 100644 --- a/modules/gfx/pymod/__init__.py +++ b/modules/gfx/pymod/__init__.py @@ -141,7 +141,7 @@ def FitToScreen(gfx_ent, width=None, height=None, margin=0.01): scene.SetRTC(rtc) -class GfxNodeListAttrProxy: +class GfxNodeListAttrProxy(object): def __init__(self, node_list, name): self._node_list=node_list self._name=name @@ -164,6 +164,11 @@ class GfxNodeListProxy(object): return super(GfxNodeListProxy, self).__getattr__(name) return GfxNodeListAttrProxy(self._nodes, name) + def __dir__(self): + if len(self._nodes)==0: + return dir(None) + return dir(self._nodes[0]) + def __setattr__(self, name, value): if name.startswith('_'): super(GfxNodeListProxy, self).__setattr__(name, value) @@ -183,4 +188,4 @@ def _Match(scene, pattern="*"): return matches return GfxNodeListProxy(_Recurse("", Scene().root_node, pattern)) -SceneSingleton.__getitem__=_Match +SceneSingleton.Match=_Match -- GitLab From b1e3a59a58c80b4113d9c5543a1150e74b883724 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Sun, 20 Feb 2011 10:53:54 +0100 Subject: [PATCH 10/59] display correct version number in "About" dialog The version number is now directly based on ost.VERSION. Also, while I'm in there, make the link to the openstructure.org website clickable. --- modules/gui/pymod/init_splash.py | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/modules/gui/pymod/init_splash.py b/modules/gui/pymod/init_splash.py index 332636063..ec5e3667c 100644 --- a/modules/gui/pymod/init_splash.py +++ b/modules/gui/pymod/init_splash.py @@ -6,6 +6,15 @@ from ost import gui LOGO_PATH = os.path.join(ost.GetSharedDataPath(), "gui", "images", "logo-small.png") + +SPLASH_TEXT=""""Welcome to <b>Openstructure</b>!<br/><br/> +You are running version %s<br /><br />If you are new to OpenStructure, we +invite you to run the demos from the examples directory. Scripts can be +displayed by right clicking on the file and selecting 'Show source'.<br/><br/> +Feel free visit our website at:<br /> +<a href='http://www.openstructure.org'>http://www.openstructure.org</a> +""" % ost.VERSION + class SplashDialog(QtGui.QDialog): def __init__(self, parent=None): QtGui.QDialog.__init__(self, parent) @@ -15,9 +24,10 @@ class SplashDialog(QtGui.QDialog): self.pix_map = QtGui.QPixmap(LOGO_PATH); imageLabel.setPixmap(self.pix_map); layout.addWidget(imageLabel) - self.label = QtGui.QTextEdit() + self.label = QtGui.QTextBrowser() self.label.setReadOnly(True) - self.label.setHtml("Welcome to <b>Openstructure</b>!<br /><br />You are running version 1.0.0a<br /><br />If you are new to OpenStructure, we invite you to run the demos from the examples directory. Scripts can be displayed by right clicking on the file and selecting 'Show source'.<br /><br />Feel free visit our website at:<br /> http://www.openstructure.org") + self.label.setOpenExternalLinks(True) + self.label.setHtml(SPLASH_TEXT) layout.addWidget(self.label) def _InitSplash(): @@ -25,3 +35,6 @@ def _InitSplash(): splash.exec_() #QtCore.QTimer.singleShot(30000, splash.close); + + +__all__=('SplashDialog',) -- GitLab From 254804917dcee7444a9e3df156417737914c5dcf Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Sun, 20 Feb 2011 12:57:29 +0100 Subject: [PATCH 11/59] fix for BZDNG-213 --- modules/gui/src/python_shell/python_shell_widget.cc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/modules/gui/src/python_shell/python_shell_widget.cc b/modules/gui/src/python_shell/python_shell_widget.cc index 16d1d4ac2..f64692410 100644 --- a/modules/gui/src/python_shell/python_shell_widget.cc +++ b/modules/gui/src/python_shell/python_shell_widget.cc @@ -42,7 +42,7 @@ #include <QScrollBar> #include <QDirModel> #include <QStringList> - +#include <QDebug> /* Authors: Marco Biasini, Andreas Schenk @@ -469,7 +469,7 @@ void PythonShellWidget::OnHistoryDownStateEntered() void PythonShellWidget::OnExecuteStateEntered() { QTextCursor cursor=textCursor(); - cursor.movePosition(QTextCursor::EndOfLine, QTextCursor::MoveAnchor); + cursor.movePosition(QTextCursor::End, QTextCursor::MoveAnchor); setTextCursor(cursor); set_block_type_(block_edit_start_,textCursor().block(),BLOCKTYPE_CODE); insertPlainText(QString(QChar::ParagraphSeparator)); @@ -791,7 +791,10 @@ QString PythonShellWidget::GetCommand() QTextCursor cursor(block_edit_start_); cursor.movePosition(QTextCursor::End, QTextCursor::KeepAnchor); QString text= cursor.selectedText(); - text.replace(QChar::LineSeparator,"\n"); + // replace LineSeparator with an empty string, they are used by Qt to + // designate soft line wraps + text.replace(QChar::LineSeparator,""); + // a real line end text.replace(QChar::ParagraphSeparator,"\n"); return text; } -- GitLab From 174b2753646ee8d19a795b5286efadc5f87ea318 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Sun, 20 Feb 2011 13:24:23 +0100 Subject: [PATCH 12/59] fix for BZDNG-173 --- modules/gui/src/python_shell/python_shell_widget.cc | 8 ++++++++ modules/gui/src/python_shell/transition_guard.cc | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/modules/gui/src/python_shell/python_shell_widget.cc b/modules/gui/src/python_shell/python_shell_widget.cc index f64692410..dc1190018 100644 --- a/modules/gui/src/python_shell/python_shell_widget.cc +++ b/modules/gui/src/python_shell/python_shell_widget.cc @@ -737,6 +737,14 @@ QTextBlock PythonShellWidget::GetEditStartBlock() void PythonShellWidget::keyPressEvent(QKeyEvent* event) { + // BZDNG-173 + if (event->key()==Qt::Key_Left) { + if (this->textCursor().position()==GetEditStartBlock().position() || + this->textCursor().anchor()==GetEditStartBlock().position()) { + event->accept(); + return; + } + } if (this->handle_custom_commands_(event)){ return; } diff --git a/modules/gui/src/python_shell/transition_guard.cc b/modules/gui/src/python_shell/transition_guard.cc index c32898964..940d5bba1 100644 --- a/modules/gui/src/python_shell/transition_guard.cc +++ b/modules/gui/src/python_shell/transition_guard.cc @@ -37,7 +37,7 @@ EditPositionGuard::EditPositionGuard(PythonShellWidget* shell, int flags1, int f bool EditPositionGuard::check() { - return check_flag(flags1_) && check_flag(flags2_); + return check_flag(flags1_) && check_flag(flags2_); } bool EditPositionGuard::check_flag(int flags) -- GitLab From cf9d1d9922719ece055cb4c810c5a5c1fc8e434c Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Sun, 20 Feb 2011 11:33:45 -0500 Subject: [PATCH 13/59] silenced a warning --- modules/gfx/src/scene.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gfx/src/scene.cc b/modules/gfx/src/scene.cc index 1f0abadc4..337077ee7 100644 --- a/modules/gfx/src/scene.cc +++ b/modules/gfx/src/scene.cc @@ -1331,7 +1331,7 @@ void Scene::SetStereoDistance(Real d) void Scene::SetStereoAlg(unsigned int a) { stereo_alg_=a; - if(stereo_alg_<0 || stereo_alg_>1) { + if(stereo_alg_>1) { stereo_alg_=0; } if(stereo_mode_>0) { -- GitLab From b51ae1fd62f57c867d9b06f1d2552e8958767191 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Mon, 21 Feb 2011 08:22:32 +0100 Subject: [PATCH 14/59] bump version to 1.2.0 --- modules/config/version.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/config/version.hh b/modules/config/version.hh index 683356005..c2c019aed 100644 --- a/modules/config/version.hh +++ b/modules/config/version.hh @@ -20,8 +20,8 @@ #define OST_VERSION_HH_ #define OST_VERSION_MAJOR 1 -#define OST_VERSION_MINOR 1 +#define OST_VERSION_MINOR 2 #define OST_VERSION_PATCH 0 -#define OST_VERSION_STRING "1.1.0" +#define OST_VERSION_STRING "1.2.0" #endif /* OST_VERSION_HH_ */ -- GitLab From 970dff3c980b1456e11b65868a62131483980e22 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Mon, 21 Feb 2011 09:48:17 +0100 Subject: [PATCH 15/59] updated copyright notice --- deployment/README.html.in | 2 +- deployment/win/dng.bat | 2 +- examples/code_fragments/ui/mdi_example.py | 2 +- examples/code_fragments/ui/menubar_example.py | 2 +- examples/code_fragments/ui/widget_example.py | 2 +- modules/base/pymod/__init__.py | 2 +- modules/base/pymod/export_generic_property.cc | 2 +- modules/base/pymod/export_logger.cc | 2 +- modules/base/pymod/export_range.cc | 2 +- modules/base/pymod/export_units.cc | 2 +- modules/base/pymod/wrap_base.cc | 2 +- modules/base/src/dyn_cast.hh | 2 +- modules/base/src/export_helper/generic_property_def.hh | 2 +- modules/base/src/export_helper/pair_to_tuple_conv.hh | 2 +- modules/base/src/generic_property.cc | 2 +- modules/base/src/generic_property.hh | 2 +- modules/base/src/integrity_error.hh | 2 +- modules/base/src/invalid_handle.hh | 2 +- modules/base/src/log.cc | 2 +- modules/base/src/log.hh | 2 +- modules/base/src/log_sink.cc | 2 +- modules/base/src/log_sink.hh | 2 +- modules/base/src/message.cc | 2 +- modules/base/src/message.hh | 2 +- modules/base/src/module_config.hh | 2 +- modules/base/src/platform.cc | 2 +- modules/base/src/platform.hh | 2 +- modules/base/src/pod_vector.hh | 2 +- modules/base/src/profile.cc | 2 +- modules/base/src/profile.hh | 2 +- modules/base/src/ptr_observer.hh | 2 +- modules/base/src/range.hh | 2 +- modules/base/src/string_ref.cc | 2 +- modules/base/src/string_ref.hh | 2 +- modules/base/src/test_utils/compare_files.cc | 2 +- modules/base/src/test_utils/compare_files.hh | 2 +- modules/base/src/units.cc | 2 +- modules/base/src/units.hh | 2 +- modules/base/tests/test_generic_property.cc | 2 +- modules/base/tests/test_pod_vector.cc | 2 +- modules/base/tests/test_string_ref.cc | 2 +- modules/base/tests/tests.cc | 2 +- modules/config/base.hh | 2 +- modules/config/config.hh.in | 2 +- modules/config/dllexport.hh | 2 +- modules/conop/pymod/__init__.py | 2 +- modules/conop/pymod/export_builder.cc | 2 +- modules/conop/pymod/export_compound.cc | 2 +- modules/conop/pymod/export_conop.cc | 2 +- modules/conop/pymod/export_ring_finder.cc | 2 +- modules/conop/pymod/wrap_conop.cc | 2 +- modules/conop/src/builder.cc | 2 +- modules/conop/src/builder.hh | 2 +- modules/conop/src/builder_fw.hh | 2 +- modules/conop/src/chemdict_tool.cc | 2 +- modules/conop/src/compound.cc | 2 +- modules/conop/src/compound.hh | 2 +- modules/conop/src/compound_lib.cc | 2 +- modules/conop/src/compound_lib.hh | 2 +- modules/conop/src/conop.cc | 2 +- modules/conop/src/conop.hh | 2 +- modules/conop/src/heuristic_builder.cc | 2 +- modules/conop/src/heuristic_builder.hh | 2 +- modules/conop/src/heuristic_connect.cc | 2 +- modules/conop/src/heuristic_connect.hh | 2 +- modules/conop/src/heuristic_connect_table.hh | 2 +- modules/conop/src/module_config.hh | 2 +- modules/conop/src/ring_finder.cc | 2 +- modules/conop/src/ring_finder.hh | 2 +- modules/conop/src/rule_based_builder.cc | 2 +- modules/conop/src/rule_based_builder.hh | 2 +- modules/conop/tests/test_builder.cc | 2 +- modules/conop/tests/test_heuristic_builder.cc | 2 +- modules/conop/tests/tests.cc | 2 +- modules/db/pymod/__init__.py | 2 +- modules/db/src/module_config.hh | 2 +- modules/db/src/sqlite_conv.hh | 2 +- modules/db/src/sqlite_wrap.cc | 2 +- modules/db/src/sqlite_wrap.hh | 2 +- modules/geom/pymod/__init__.py | 2 +- modules/geom/pymod/export_composite2.cc | 2 +- modules/geom/pymod/export_composite2_op.cc | 2 +- modules/geom/pymod/export_composite3.cc | 2 +- modules/geom/pymod/export_composite3_op.cc | 2 +- modules/geom/pymod/export_mat2.cc | 2 +- modules/geom/pymod/export_mat3.cc | 2 +- modules/geom/pymod/export_mat4.cc | 2 +- modules/geom/pymod/export_quat.cc | 2 +- modules/geom/pymod/export_vec2.cc | 2 +- modules/geom/pymod/export_vec3.cc | 2 +- modules/geom/pymod/export_vec4.cc | 2 +- modules/geom/pymod/export_vecmat2_op.cc | 2 +- modules/geom/pymod/export_vecmat3_op.cc | 2 +- modules/geom/pymod/export_vecmat4_op.cc | 2 +- modules/geom/pymod/import_wrapper.hh | 2 +- modules/geom/pymod/wrap_geom.cc | 2 +- modules/geom/src/aligned_cuboid.cc | 2 +- modules/geom/src/aligned_cuboid.hh | 2 +- modules/geom/src/circular_iterator.hh | 2 +- modules/geom/src/composite.hh | 2 +- modules/geom/src/composite2.cc | 2 +- modules/geom/src/composite2.hh | 2 +- modules/geom/src/composite2_op.cc | 2 +- modules/geom/src/composite2_op.hh | 2 +- modules/geom/src/composite3.cc | 2 +- modules/geom/src/composite3.hh | 2 +- modules/geom/src/composite3_op.cc | 2 +- modules/geom/src/composite3_op.hh | 2 +- modules/geom/src/composite_op.hh | 2 +- modules/geom/src/constants.hh | 2 +- modules/geom/src/def.hh | 2 +- modules/geom/src/exc.hh | 2 +- modules/geom/src/exception.hh | 2 +- modules/geom/src/fnc.hh | 2 +- modules/geom/src/geom.hh | 2 +- modules/geom/src/mat.hh | 2 +- modules/geom/src/mat2.cc | 2 +- modules/geom/src/mat2.hh | 2 +- modules/geom/src/mat3.cc | 2 +- modules/geom/src/mat3.hh | 2 +- modules/geom/src/mat4.cc | 2 +- modules/geom/src/mat4.hh | 2 +- modules/geom/src/module_config.hh | 2 +- modules/geom/src/point_cloud.cc | 2 +- modules/geom/src/point_cloud.hh | 2 +- modules/geom/src/quat.cc | 2 +- modules/geom/src/quat.hh | 2 +- modules/geom/src/vec.hh | 2 +- modules/geom/src/vec2.hh | 2 +- modules/geom/src/vec3.cc | 2 +- modules/geom/src/vec3.hh | 2 +- modules/geom/src/vec4.hh | 2 +- modules/geom/src/vecmat2_op.cc | 2 +- modules/geom/src/vecmat2_op.hh | 2 +- modules/geom/src/vecmat3_op.cc | 2 +- modules/geom/src/vecmat3_op.hh | 2 +- modules/geom/src/vecmat4_op.cc | 2 +- modules/geom/src/vecmat4_op.hh | 2 +- modules/geom/src/vecmat_op.hh | 2 +- modules/gfx/pymod/__init__.py | 2 +- modules/gfx/pymod/color_by_def.hh | 2 +- modules/gfx/pymod/export_color_ops.cc | 2 +- modules/gfx/pymod/export_entity.cc | 2 +- modules/gfx/pymod/export_gfx_node.cc | 2 +- modules/gfx/pymod/export_gfx_obj.cc | 2 +- modules/gfx/pymod/export_glwin_base.cc | 2 +- modules/gfx/pymod/export_map.cc | 2 +- modules/gfx/pymod/export_primitives.cc | 2 +- modules/gfx/pymod/export_render_options.cc | 2 +- modules/gfx/pymod/export_scene.cc | 2 +- modules/gfx/pymod/export_surface.cc | 2 +- modules/gfx/pymod/export_symmetry_node.cc | 2 +- modules/gfx/pymod/wrap_gfx.cc | 2 +- modules/gfx/src/bitmap_io.cc | 2 +- modules/gfx/src/bitmap_io.hh | 2 +- modules/gfx/src/color.cc | 2 +- modules/gfx/src/color.hh | 2 +- modules/gfx/src/color_ops/basic_gradient_color_op.cc | 2 +- modules/gfx/src/color_ops/basic_gradient_color_op.hh | 2 +- modules/gfx/src/color_ops/by_chain_color_op.cc | 2 +- modules/gfx/src/color_ops/by_chain_color_op.hh | 2 +- modules/gfx/src/color_ops/by_element_color_op.cc | 2 +- modules/gfx/src/color_ops/by_element_color_op.hh | 2 +- modules/gfx/src/color_ops/color_op.cc | 2 +- modules/gfx/src/color_ops/color_op.hh | 2 +- modules/gfx/src/color_ops/entity_view_color_op.cc | 2 +- modules/gfx/src/color_ops/entity_view_color_op.hh | 2 +- modules/gfx/src/color_ops/gradient_color_op.cc | 2 +- modules/gfx/src/color_ops/gradient_color_op.hh | 2 +- modules/gfx/src/color_ops/gradient_level_color_op.cc | 2 +- modules/gfx/src/color_ops/gradient_level_color_op.hh | 2 +- modules/gfx/src/color_ops/map_handle_color_op.cc | 2 +- modules/gfx/src/color_ops/map_handle_color_op.hh | 2 +- modules/gfx/src/color_ops/uniform_color_op.cc | 2 +- modules/gfx/src/color_ops/uniform_color_op.hh | 2 +- modules/gfx/src/entity.cc | 2 +- modules/gfx/src/entity.hh | 2 +- modules/gfx/src/entity_fw.hh | 2 +- modules/gfx/src/gfx.hh | 2 +- modules/gfx/src/gfx_fw.hh | 2 +- modules/gfx/src/gfx_node.cc | 2 +- modules/gfx/src/gfx_node.hh | 2 +- modules/gfx/src/gfx_node_fw.hh | 2 +- modules/gfx/src/gfx_node_visitor.hh | 2 +- modules/gfx/src/gfx_object.cc | 2 +- modules/gfx/src/gfx_object.hh | 2 +- modules/gfx/src/gfx_object_base.hh | 2 +- modules/gfx/src/gfx_object_fw.hh | 2 +- modules/gfx/src/gfx_prim.cc | 2 +- modules/gfx/src/gfx_prim.hh | 2 +- modules/gfx/src/gfx_test_object.cc | 2 +- modules/gfx/src/gfx_test_object.hh | 2 +- modules/gfx/src/gl_helper.hh | 2 +- modules/gfx/src/gl_include.hh | 2 +- modules/gfx/src/glext_include.hh | 2 +- modules/gfx/src/glwin_base.hh | 2 +- modules/gfx/src/gradient.cc | 2 +- modules/gfx/src/gradient.hh | 2 +- modules/gfx/src/gradient_manager.cc | 2 +- modules/gfx/src/gradient_manager.hh | 2 +- modules/gfx/src/impl/backbone_trace.cc | 2 +- modules/gfx/src/impl/backbone_trace.hh | 2 +- modules/gfx/src/impl/cartoon_renderer.cc | 2 +- modules/gfx/src/impl/cartoon_renderer.hh | 2 +- modules/gfx/src/impl/cgl_offscreen_buffer.cc | 2 +- modules/gfx/src/impl/cgl_offscreen_buffer.hh | 2 +- modules/gfx/src/impl/connect_renderer_base.cc | 2 +- modules/gfx/src/impl/connect_renderer_base.hh | 2 +- modules/gfx/src/impl/cpk_renderer.cc | 2 +- modules/gfx/src/impl/cpk_renderer.hh | 2 +- modules/gfx/src/impl/custom_renderer.cc | 2 +- modules/gfx/src/impl/custom_renderer.hh | 2 +- modules/gfx/src/impl/debug_renderer.cc | 2 +- modules/gfx/src/impl/debug_renderer.hh | 2 +- modules/gfx/src/impl/entity_detail.cc | 2 +- modules/gfx/src/impl/entity_detail.hh | 2 +- modules/gfx/src/impl/entity_renderer.cc | 2 +- modules/gfx/src/impl/entity_renderer.hh | 2 +- modules/gfx/src/impl/entity_renderer_fw.hh | 2 +- modules/gfx/src/impl/generate_map_iso_spec.py | 2 +- modules/gfx/src/impl/glx_offscreen_buffer.cc | 2 +- modules/gfx/src/impl/glx_offscreen_buffer.hh | 2 +- modules/gfx/src/impl/line_trace_renderer.cc | 2 +- modules/gfx/src/impl/line_trace_renderer.hh | 2 +- modules/gfx/src/impl/map_iso_gen.cc | 2 +- modules/gfx/src/impl/map_iso_gen.hh | 2 +- modules/gfx/src/impl/map_iso_gen_o.cc | 2 +- modules/gfx/src/impl/map_iso_gen_o.hh | 2 +- modules/gfx/src/impl/map_iso_gen_s.cc | 2 +- modules/gfx/src/impl/map_iso_gen_s.hh | 2 +- modules/gfx/src/impl/map_iso_spec.hh | 2 +- modules/gfx/src/impl/map_octree.cc | 2 +- modules/gfx/src/impl/map_octree.hh | 2 +- modules/gfx/src/impl/mapped_property.cc | 2 +- modules/gfx/src/impl/mapped_property.hh | 2 +- modules/gfx/src/impl/octree_isocont.cc | 2 +- modules/gfx/src/impl/octree_isocont.hh | 2 +- modules/gfx/src/impl/scene_fx.hh | 2 +- modules/gfx/src/impl/simple_renderer.cc | 2 +- modules/gfx/src/impl/simple_renderer.hh | 2 +- modules/gfx/src/impl/sline_renderer.cc | 2 +- modules/gfx/src/impl/sline_renderer.hh | 2 +- modules/gfx/src/impl/tabulated_trig.cc | 2 +- modules/gfx/src/impl/tabulated_trig.hh | 2 +- modules/gfx/src/impl/trace_renderer.cc | 2 +- modules/gfx/src/impl/trace_renderer.hh | 2 +- modules/gfx/src/impl/trace_renderer_base.cc | 2 +- modules/gfx/src/impl/trace_renderer_base.hh | 2 +- modules/gfx/src/impl/wgl_offscreen_buffer.cc | 2 +- modules/gfx/src/impl/wgl_offscreen_buffer.hh | 2 +- modules/gfx/src/input.cc | 2 +- modules/gfx/src/input.hh | 2 +- modules/gfx/src/map_iso.cc | 2 +- modules/gfx/src/map_iso.hh | 2 +- modules/gfx/src/map_iso_prop.hh | 2 +- modules/gfx/src/map_slab.cc | 2 +- modules/gfx/src/map_slab.hh | 2 +- modules/gfx/src/material.cc | 2 +- modules/gfx/src/material.hh | 2 +- modules/gfx/src/module_config.hh | 2 +- modules/gfx/src/offscreen_buffer.cc | 2 +- modules/gfx/src/offscreen_buffer.hh | 2 +- modules/gfx/src/povray.cc | 2 +- modules/gfx/src/povray.hh | 2 +- modules/gfx/src/povray_fw.hh | 2 +- modules/gfx/src/prim_list.cc | 2 +- modules/gfx/src/prim_list.hh | 2 +- modules/gfx/src/primitives.cc | 2 +- modules/gfx/src/primitives.hh | 2 +- modules/gfx/src/render_mode.hh | 2 +- modules/gfx/src/render_options/cartoon_render_options.cc | 2 +- modules/gfx/src/render_options/cartoon_render_options.hh | 2 +- modules/gfx/src/render_options/cpk_render_options.cc | 2 +- modules/gfx/src/render_options/cpk_render_options.hh | 2 +- modules/gfx/src/render_options/custom_render_options.cc | 2 +- modules/gfx/src/render_options/custom_render_options.hh | 2 +- modules/gfx/src/render_options/line_render_options.cc | 2 +- modules/gfx/src/render_options/line_render_options.hh | 2 +- modules/gfx/src/render_options/line_trace_render_options.cc | 2 +- modules/gfx/src/render_options/line_trace_render_options.hh | 2 +- modules/gfx/src/render_options/render_options.cc | 2 +- modules/gfx/src/render_options/render_options.hh | 2 +- modules/gfx/src/render_options/simple_render_options.cc | 2 +- modules/gfx/src/render_options/simple_render_options.hh | 2 +- modules/gfx/src/render_options/sline_render_options.cc | 2 +- modules/gfx/src/render_options/sline_render_options.hh | 2 +- modules/gfx/src/render_options/trace_render_options.cc | 2 +- modules/gfx/src/render_options/trace_render_options.hh | 2 +- modules/gfx/src/render_pass.hh | 2 +- modules/gfx/src/scene.cc | 2 +- modules/gfx/src/scene.hh | 2 +- modules/gfx/src/scene_observer.hh | 2 +- modules/gfx/src/selection.cc | 2 +- modules/gfx/src/selection.hh | 2 +- modules/gfx/src/shader.cc | 2 +- modules/gfx/src/shader.hh | 2 +- modules/gfx/src/surface.cc | 2 +- modules/gfx/src/surface.hh | 2 +- modules/gfx/src/symmetry_node.cc | 2 +- modules/gfx/src/symmetry_node.hh | 2 +- modules/gfx/src/texture.hh | 2 +- modules/gfx/src/vertex_array.cc | 2 +- modules/gfx/src/vertex_array.hh | 2 +- modules/gfx/src/vertex_array_helper.cc | 2 +- modules/gfx/src/vertex_array_helper.hh | 2 +- modules/gfx/tests/test_ent_pov_export.cc | 2 +- modules/gfx/tests/test_gfx_node.cc | 2 +- modules/gfx/tests/test_map_octree.cc | 2 +- modules/gfx/tests/tests.cc | 2 +- modules/gui/pymod/__init__.py | 2 +- modules/gui/pymod/export_alignment_view.cc | 2 +- modules/gui/pymod/export_data_viewer.cc | 2 +- modules/gui/pymod/export_file_loader.cc | 2 +- modules/gui/pymod/export_file_viewer.cc | 2 +- modules/gui/pymod/export_gl_win.cc | 2 +- modules/gui/pymod/export_gosty.cc | 2 +- modules/gui/pymod/export_input.cc | 2 +- modules/gui/pymod/export_main_area.cc | 2 +- modules/gui/pymod/export_menu_bar.cc | 2 +- modules/gui/pymod/export_message_widget.cc | 2 +- modules/gui/pymod/export_overlay.cc | 2 +- modules/gui/pymod/export_panels.cc | 2 +- modules/gui/pymod/export_perspective.cc | 2 +- modules/gui/pymod/export_plot.cc | 2 +- modules/gui/pymod/export_py_shell.cc | 2 +- modules/gui/pymod/export_remote_site_loader.cc | 2 +- modules/gui/pymod/export_scene_selection.cc | 2 +- modules/gui/pymod/export_scene_win.cc | 2 +- modules/gui/pymod/export_sequence_viewer.cc | 2 +- modules/gui/pymod/export_sip_handler.cc | 2 +- modules/gui/pymod/export_tool.cc | 2 +- modules/gui/pymod/export_widget.cc | 2 +- modules/gui/pymod/init_menubar.py | 2 +- modules/gui/pymod/qptr.hh | 2 +- modules/gui/pymod/scene/__init__.py | 2 +- modules/gui/pymod/scene/color_options_widget.py | 2 +- modules/gui/pymod/scene/color_select_widget.py | 2 +- modules/gui/pymod/scene/combo_options_widget.py | 2 +- modules/gui/pymod/scene/cpk_widget.py | 2 +- modules/gui/pymod/scene/custom_widget.py | 2 +- modules/gui/pymod/scene/file_loader.py | 2 +- modules/gui/pymod/scene/gradient_editor_widget.py | 2 +- modules/gui/pymod/scene/gradient_info_handler.py | 2 +- modules/gui/pymod/scene/gradient_preset_widget.py | 2 +- modules/gui/pymod/scene/hsc_widget.py | 2 +- modules/gui/pymod/scene/immutable_gradient_info_handler.py | 2 +- modules/gui/pymod/scene/immutable_info_handler.py | 2 +- modules/gui/pymod/scene/immutable_loader_info_handler.py | 2 +- modules/gui/pymod/scene/immutable_preset_info_handler.py | 2 +- modules/gui/pymod/scene/init_inspector.py | 2 +- modules/gui/pymod/scene/inspector_widget.py | 2 +- modules/gui/pymod/scene/line_trace_widget.py | 2 +- modules/gui/pymod/scene/loader_info_handler.py | 2 +- modules/gui/pymod/scene/loader_manager_widget.py | 2 +- modules/gui/pymod/scene/map_level_widget.py | 2 +- modules/gui/pymod/scene/preset.py | 2 +- modules/gui/pymod/scene/preset_editor_widget.py | 2 +- modules/gui/pymod/scene/preset_info_handler.py | 2 +- modules/gui/pymod/scene/preset_widget.py | 2 +- modules/gui/pymod/scene/render_mode_widget.py | 2 +- modules/gui/pymod/scene/render_op.py | 2 +- modules/gui/pymod/scene/render_options_widget.py | 2 +- modules/gui/pymod/scene/scene_observer_impl.py | 2 +- modules/gui/pymod/scene/scene_selection_helper.py | 2 +- modules/gui/pymod/scene/simple_widget.py | 2 +- modules/gui/pymod/scene/sline_widget.py | 2 +- modules/gui/pymod/scene/toolbar_options_widget.py | 2 +- modules/gui/pymod/scene/trace_widget.py | 2 +- modules/gui/pymod/scene/tube_widget.py | 2 +- modules/gui/pymod/scene/uniform_color_widget.py | 2 +- modules/gui/pymod/scene/visibility_op.py | 2 +- modules/gui/pymod/scene/wireframe_widget.py | 2 +- modules/gui/pymod/sip_handler.hh | 2 +- modules/gui/pymod/traj.py | 2 +- modules/gui/pymod/wrap_gui.cc | 2 +- modules/gui/src/admin.cc | 2 +- modules/gui/src/admin.hh | 2 +- modules/gui/src/data_viewer/argand.cc | 2 +- modules/gui/src/data_viewer/argand.hh | 2 +- modules/gui/src/data_viewer/data_viewer.cc | 2 +- modules/gui/src/data_viewer/data_viewer.hh | 2 +- modules/gui/src/data_viewer/data_viewer_panel.cc | 2 +- modules/gui/src/data_viewer/data_viewer_panel.hh | 2 +- modules/gui/src/data_viewer/data_viewer_panel_base.cc | 2 +- modules/gui/src/data_viewer/data_viewer_panel_base.hh | 2 +- modules/gui/src/data_viewer/draw_overlay.cc | 2 +- modules/gui/src/data_viewer/draw_overlay.hh | 2 +- modules/gui/src/data_viewer/drawing_functions.cc | 2 +- modules/gui/src/data_viewer/drawing_functions.hh | 2 +- modules/gui/src/data_viewer/fft_panel.cc | 2 +- modules/gui/src/data_viewer/fft_panel.hh | 2 +- modules/gui/src/data_viewer/img2qt.cc | 2 +- modules/gui/src/data_viewer/img2qt.hh | 2 +- modules/gui/src/data_viewer/info_panel.cc | 2 +- modules/gui/src/data_viewer/info_panel.hh | 2 +- modules/gui/src/data_viewer/mask_overlay.cc | 2 +- modules/gui/src/data_viewer/mask_overlay.hh | 2 +- modules/gui/src/data_viewer/null_overlay.cc | 2 +- modules/gui/src/data_viewer/null_overlay.hh | 2 +- modules/gui/src/data_viewer/overlay.hh | 2 +- modules/gui/src/data_viewer/overlay_base.cc | 2 +- modules/gui/src/data_viewer/overlay_base.hh | 2 +- modules/gui/src/data_viewer/overlay_base_fw.hh | 2 +- modules/gui/src/data_viewer/overlay_manager.cc | 2 +- modules/gui/src/data_viewer/overlay_manager.hh | 2 +- modules/gui/src/data_viewer/overlay_manager_fw.hh | 2 +- modules/gui/src/data_viewer/overlay_manager_gui.cc | 2 +- modules/gui/src/data_viewer/overlay_manager_gui.hh | 2 +- modules/gui/src/data_viewer/overlay_manager_observer.hh | 2 +- modules/gui/src/data_viewer/pointlist_overlay.cc | 2 +- modules/gui/src/data_viewer/pointlist_overlay.hh | 2 +- modules/gui/src/data_viewer/pointlist_overlay_base.cc | 2 +- modules/gui/src/data_viewer/pointlist_overlay_base.hh | 2 +- modules/gui/src/data_viewer/strategies.cc | 2 +- modules/gui/src/data_viewer/strategies.hh | 2 +- modules/gui/src/data_viewer/strategies_fw.hh | 2 +- modules/gui/src/data_viewer/viewer_normalizer.cc | 2 +- modules/gui/src/data_viewer/viewer_normalizer.hh | 2 +- modules/gui/src/dock_widget.cc | 2 +- modules/gui/src/dock_widget.hh | 2 +- modules/gui/src/entity_explorer/entity_explorer.cc | 2 +- modules/gui/src/entity_explorer/entity_explorer.hh | 2 +- modules/gui/src/entity_explorer/entity_explorer_model.cc | 2 +- modules/gui/src/entity_explorer/entity_explorer_model.hh | 2 +- modules/gui/src/entity_explorer/info_panel.cc | 2 +- modules/gui/src/entity_explorer/info_panel.hh | 2 +- modules/gui/src/entity_explorer/menu_item.cc | 2 +- modules/gui/src/entity_explorer/menu_item.hh | 2 +- modules/gui/src/file_browser.cc | 2 +- modules/gui/src/file_browser.hh | 2 +- modules/gui/src/file_loader.cc | 2 +- modules/gui/src/file_loader.hh | 2 +- modules/gui/src/file_type_dialog.cc | 2 +- modules/gui/src/file_type_dialog.hh | 2 +- modules/gui/src/file_viewer.cc | 2 +- modules/gui/src/file_viewer.hh | 2 +- modules/gui/src/gl_canvas.cc | 2 +- modules/gui/src/gl_canvas.hh | 2 +- modules/gui/src/gl_win.cc | 2 +- modules/gui/src/gl_win.hh | 2 +- modules/gui/src/gosty.cc | 2 +- modules/gui/src/gosty.hh | 2 +- modules/gui/src/gosty_app.cc | 2 +- modules/gui/src/gosty_app.hh | 2 +- modules/gui/src/input/spnav_input.cc | 2 +- modules/gui/src/input/spnav_input.hh | 2 +- modules/gui/src/loader_manager.cc | 2 +- modules/gui/src/loader_manager.hh | 2 +- modules/gui/src/main.cc | 2 +- modules/gui/src/main.hh | 2 +- modules/gui/src/main_area.cc | 2 +- modules/gui/src/main_area.hh | 2 +- modules/gui/src/main_window.cc | 2 +- modules/gui/src/main_window.hh | 2 +- modules/gui/src/messages/log_reader.cc | 2 +- modules/gui/src/messages/log_reader.hh | 2 +- modules/gui/src/messages/message_box_widget.cc | 2 +- modules/gui/src/messages/message_box_widget.hh | 2 +- modules/gui/src/messages/message_widget.cc | 2 +- modules/gui/src/messages/message_widget.hh | 2 +- modules/gui/src/module_config.hh | 2 +- modules/gui/src/panels/bottom_bar.cc | 2 +- modules/gui/src/panels/bottom_bar.hh | 2 +- modules/gui/src/panels/button_bar.cc | 2 +- modules/gui/src/panels/button_bar.hh | 2 +- modules/gui/src/panels/button_box.cc | 2 +- modules/gui/src/panels/button_box.hh | 2 +- modules/gui/src/panels/drop_box.cc | 2 +- modules/gui/src/panels/drop_box.hh | 2 +- modules/gui/src/panels/event_button.cc | 2 +- modules/gui/src/panels/event_button.hh | 2 +- modules/gui/src/panels/panel_bar.cc | 2 +- modules/gui/src/panels/panel_bar.hh | 2 +- modules/gui/src/panels/panel_bar_widget_holder.cc | 2 +- modules/gui/src/panels/panel_bar_widget_holder.hh | 2 +- modules/gui/src/panels/panel_manager.cc | 2 +- modules/gui/src/panels/panel_manager.hh | 2 +- modules/gui/src/panels/panel_widget_container.cc | 2 +- modules/gui/src/panels/panel_widget_container.hh | 2 +- modules/gui/src/panels/side_bar.cc | 2 +- modules/gui/src/panels/side_bar.hh | 2 +- modules/gui/src/panels/splitter_panel_bar.cc | 2 +- modules/gui/src/panels/splitter_panel_bar.hh | 2 +- modules/gui/src/panels/tabbed_panel_bar.cc | 2 +- modules/gui/src/panels/tabbed_panel_bar.hh | 2 +- modules/gui/src/perspective.cc | 2 +- modules/gui/src/perspective.hh | 2 +- modules/gui/src/python_shell/completer_base.cc | 2 +- modules/gui/src/python_shell/completer_base.hh | 2 +- modules/gui/src/python_shell/dir_model.cc | 2 +- modules/gui/src/python_shell/dir_model.hh | 2 +- modules/gui/src/python_shell/gutter.cc | 2 +- modules/gui/src/python_shell/gutter.hh | 2 +- modules/gui/src/python_shell/main_thread_runner.cc | 2 +- modules/gui/src/python_shell/main_thread_runner.hh | 2 +- modules/gui/src/python_shell/output_redirector.cc | 2 +- modules/gui/src/python_shell/output_redirector.hh | 2 +- modules/gui/src/python_shell/path_completer.cc | 2 +- modules/gui/src/python_shell/path_completer.hh | 2 +- modules/gui/src/python_shell/python_completer.cc | 2 +- modules/gui/src/python_shell/python_completer.hh | 2 +- modules/gui/src/python_shell/python_context_parser.cc | 2 +- modules/gui/src/python_shell/python_context_parser.hh | 2 +- modules/gui/src/python_shell/python_interpreter.cc | 2 +- modules/gui/src/python_shell/python_interpreter.hh | 2 +- modules/gui/src/python_shell/python_interpreter_proxy.cc | 2 +- modules/gui/src/python_shell/python_interpreter_proxy.hh | 2 +- modules/gui/src/python_shell/python_namespace_tree_item.cc | 2 +- modules/gui/src/python_shell/python_namespace_tree_item.hh | 2 +- modules/gui/src/python_shell/python_namespace_tree_model.cc | 2 +- modules/gui/src/python_shell/python_namespace_tree_model.hh | 2 +- modules/gui/src/python_shell/python_shell.cc | 2 +- modules/gui/src/python_shell/python_shell.hh | 2 +- modules/gui/src/python_shell/python_shell_fw.hh | 2 +- .../gui/src/python_shell/python_shell_text_document_layout.cc | 2 +- .../gui/src/python_shell/python_shell_text_document_layout.hh | 2 +- modules/gui/src/python_shell/python_shell_widget.cc | 2 +- modules/gui/src/python_shell/python_shell_widget.hh | 2 +- modules/gui/src/python_shell/python_syntax_highlighter.cc | 2 +- modules/gui/src/python_shell/python_syntax_highlighter.hh | 2 +- modules/gui/src/python_shell/python_tokenizer.cc | 2 +- modules/gui/src/python_shell/python_tokenizer.hh | 2 +- modules/gui/src/python_shell/shell_history.cc | 2 +- modules/gui/src/python_shell/shell_history.hh | 2 +- modules/gui/src/python_shell/string_literal_positions.cc | 2 +- modules/gui/src/python_shell/string_literal_positions.hh | 2 +- modules/gui/src/python_shell/text_logger.cc | 2 +- modules/gui/src/python_shell/text_logger.hh | 2 +- modules/gui/src/remote_loader.cc | 2 +- modules/gui/src/remote_loader.hh | 2 +- modules/gui/src/remote_site_loader.cc | 2 +- modules/gui/src/remote_site_loader.hh | 2 +- modules/gui/src/scene_menu.cc | 2 +- modules/gui/src/scene_menu.hh | 2 +- modules/gui/src/scene_selection.cc | 2 +- modules/gui/src/scene_selection.hh | 2 +- modules/gui/src/scene_win/context_menu.cc | 2 +- modules/gui/src/scene_win/context_menu.hh | 2 +- modules/gui/src/scene_win/gfx_scene_node.cc | 2 +- modules/gui/src/scene_win/gfx_scene_node.hh | 2 +- modules/gui/src/scene_win/root_node.cc | 2 +- modules/gui/src/scene_win/root_node.hh | 2 +- modules/gui/src/scene_win/scene_node.cc | 2 +- modules/gui/src/scene_win/scene_node.hh | 2 +- modules/gui/src/scene_win/scene_win.cc | 2 +- modules/gui/src/scene_win/scene_win.hh | 2 +- modules/gui/src/scene_win/scene_win_model.cc | 2 +- modules/gui/src/scene_win/scene_win_model.hh | 2 +- modules/gui/src/sequence_viewer/align_properties_painter.cc | 2 +- modules/gui/src/sequence_viewer/align_properties_painter.hh | 2 +- modules/gui/src/sequence_viewer/alignment_view_object.cc | 2 +- modules/gui/src/sequence_viewer/alignment_view_object.hh | 2 +- modules/gui/src/sequence_viewer/background_painter.cc | 2 +- modules/gui/src/sequence_viewer/background_painter.hh | 2 +- modules/gui/src/sequence_viewer/base_row.cc | 2 +- modules/gui/src/sequence_viewer/base_row.hh | 2 +- modules/gui/src/sequence_viewer/base_view_object.cc | 2 +- modules/gui/src/sequence_viewer/base_view_object.hh | 2 +- modules/gui/src/sequence_viewer/conservation_painter.cc | 2 +- modules/gui/src/sequence_viewer/conservation_painter.hh | 2 +- modules/gui/src/sequence_viewer/painter.hh | 2 +- modules/gui/src/sequence_viewer/secstr_row.cc | 2 +- modules/gui/src/sequence_viewer/secstr_row.hh | 2 +- modules/gui/src/sequence_viewer/seq_secstr_painter.cc | 2 +- modules/gui/src/sequence_viewer/seq_secstr_painter.hh | 2 +- modules/gui/src/sequence_viewer/seq_selection_painter.cc | 2 +- modules/gui/src/sequence_viewer/seq_selection_painter.hh | 2 +- modules/gui/src/sequence_viewer/seq_text_painter.cc | 2 +- modules/gui/src/sequence_viewer/seq_text_painter.hh | 2 +- modules/gui/src/sequence_viewer/sequence_delegate.cc | 2 +- modules/gui/src/sequence_viewer/sequence_delegate.hh | 2 +- modules/gui/src/sequence_viewer/sequence_model.cc | 2 +- modules/gui/src/sequence_viewer/sequence_model.hh | 2 +- modules/gui/src/sequence_viewer/sequence_row.cc | 2 +- modules/gui/src/sequence_viewer/sequence_row.hh | 2 +- modules/gui/src/sequence_viewer/sequence_search_bar.cc | 2 +- modules/gui/src/sequence_viewer/sequence_search_bar.hh | 2 +- modules/gui/src/sequence_viewer/sequence_table_view.cc | 2 +- modules/gui/src/sequence_viewer/sequence_table_view.hh | 2 +- modules/gui/src/sequence_viewer/sequence_view_object.cc | 2 +- modules/gui/src/sequence_viewer/sequence_view_object.hh | 2 +- modules/gui/src/sequence_viewer/sequence_viewer.cc | 2 +- modules/gui/src/sequence_viewer/sequence_viewer.hh | 2 +- modules/gui/src/sequence_viewer/tick_painter.cc | 2 +- modules/gui/src/sequence_viewer/tick_painter.hh | 2 +- modules/gui/src/sequence_viewer/title_row.cc | 2 +- modules/gui/src/sequence_viewer/title_row.hh | 2 +- modules/gui/src/thin_splitter.cc | 2 +- modules/gui/src/thin_splitter.hh | 2 +- modules/gui/src/tools/manipulator.cc | 2 +- modules/gui/src/tools/manipulator.hh | 2 +- modules/gui/src/tools/map_tool.cc | 2 +- modules/gui/src/tools/map_tool.hh | 2 +- modules/gui/src/tools/measure_tool.cc | 2 +- modules/gui/src/tools/measure_tool.hh | 2 +- modules/gui/src/tools/mouse_event.cc | 2 +- modules/gui/src/tools/mouse_event.hh | 2 +- modules/gui/src/tools/selection_tool.cc | 2 +- modules/gui/src/tools/selection_tool.hh | 2 +- modules/gui/src/tools/tool.cc | 2 +- modules/gui/src/tools/tool.hh | 2 +- modules/gui/src/tools/tool_bar.cc | 2 +- modules/gui/src/tools/tool_bar.hh | 2 +- modules/gui/src/tools/tool_manager.cc | 2 +- modules/gui/src/tools/tool_manager.hh | 2 +- modules/gui/src/tools/tool_option.cc | 2 +- modules/gui/src/tools/tool_option.hh | 2 +- modules/gui/src/tools/tool_option_group.cc | 2 +- modules/gui/src/tools/tool_option_group.hh | 2 +- modules/gui/src/tools/tool_options.cc | 2 +- modules/gui/src/tools/tool_options.hh | 2 +- modules/gui/src/tools/tool_options_widget.cc | 2 +- modules/gui/src/tools/tool_options_widget.hh | 2 +- modules/gui/src/tools/tool_options_win.cc | 2 +- modules/gui/src/tools/tool_options_win.hh | 2 +- modules/gui/src/widget.cc | 2 +- modules/gui/src/widget.hh | 2 +- modules/gui/src/widget_geom_handler.cc | 2 +- modules/gui/src/widget_geom_handler.hh | 2 +- modules/gui/src/widget_pool.cc | 2 +- modules/gui/src/widget_pool.hh | 2 +- modules/gui/src/widget_registry.cc | 2 +- modules/gui/src/widget_registry.hh | 2 +- modules/gui/src/widget_state_saver.cc | 2 +- modules/gui/src/widget_state_saver.hh | 2 +- modules/img/alg/pymod/__init__.py | 2 +- modules/img/alg/pymod/export_filter.cc | 2 +- modules/img/alg/pymod/export_normalizer.cc | 2 +- modules/img/alg/pymod/export_polar.cc | 2 +- modules/img/alg/pymod/export_transcendentals.cc | 2 +- modules/img/alg/pymod/wrap_alg.cc | 2 +- modules/img/alg/pymod/wrap_tf.cc | 2 +- modules/img/alg/src/alg_mirror.cc | 2 +- modules/img/alg/src/alg_mirror.hh | 2 +- modules/img/alg/src/alg_shift.cc | 2 +- modules/img/alg/src/alg_shift.hh | 2 +- modules/img/alg/src/alg_transform.cc | 2 +- modules/img/alg/src/alg_transform.hh | 2 +- modules/img/alg/src/anisotropic.cc | 2 +- modules/img/alg/src/anisotropic.hh | 2 +- modules/img/alg/src/auto_correlate.cc | 2 +- modules/img/alg/src/auto_correlate.hh | 2 +- modules/img/alg/src/clear.hh | 2 +- modules/img/alg/src/clip_min_max.hh | 2 +- modules/img/alg/src/conjugate.hh | 2 +- modules/img/alg/src/convolute.cc | 2 +- modules/img/alg/src/convolute.hh | 2 +- modules/img/alg/src/correlate.cc | 2 +- modules/img/alg/src/correlate.hh | 2 +- modules/img/alg/src/cross_correlate.cc | 2 +- modules/img/alg/src/cross_correlate.hh | 2 +- modules/img/alg/src/custom_transformer.cc | 2 +- modules/img/alg/src/custom_transformer.hh | 2 +- modules/img/alg/src/density_slice.cc | 2 +- modules/img/alg/src/density_slice.hh | 2 +- modules/img/alg/src/dft.cc | 2 +- modules/img/alg/src/dft.hh | 2 +- modules/img/alg/src/discrete_shrink.cc | 2 +- modules/img/alg/src/discrete_shrink.hh | 2 +- modules/img/alg/src/fft.cc | 2 +- modules/img/alg/src/fft.hh | 2 +- modules/img/alg/src/fftw_helper.hh | 2 +- modules/img/alg/src/fill.hh | 2 +- modules/img/alg/src/filter.hh | 2 +- modules/img/alg/src/fourier_filters.cc | 2 +- modules/img/alg/src/fourier_filters.hh | 2 +- modules/img/alg/src/fractional_shift.cc | 2 +- modules/img/alg/src/fractional_shift.hh | 2 +- modules/img/alg/src/gaussian.cc | 2 +- modules/img/alg/src/gaussian.hh | 2 +- modules/img/alg/src/gaussian_gradient_magnitude.cc | 2 +- modules/img/alg/src/gaussian_gradient_magnitude.hh | 2 +- modules/img/alg/src/gaussian_laplacian.cc | 2 +- modules/img/alg/src/gaussian_laplacian.hh | 2 +- modules/img/alg/src/histogram.cc | 2 +- modules/img/alg/src/histogram.hh | 2 +- modules/img/alg/src/line_average.cc | 2 +- modules/img/alg/src/line_average.hh | 2 +- modules/img/alg/src/line_iterator.cc | 2 +- modules/img/alg/src/line_iterator.hh | 2 +- modules/img/alg/src/local_sigma_threshold.cc | 2 +- modules/img/alg/src/local_sigma_threshold.hh | 2 +- modules/img/alg/src/mask_image.cc | 2 +- modules/img/alg/src/mask_image.hh | 2 +- modules/img/alg/src/module_config.hh | 2 +- modules/img/alg/src/negate.hh | 2 +- modules/img/alg/src/norm.hh | 2 +- modules/img/alg/src/norm_linear.cc | 2 +- modules/img/alg/src/norm_linear.hh | 2 +- modules/img/alg/src/norm_log.cc | 2 +- modules/img/alg/src/norm_log.hh | 2 +- modules/img/alg/src/norm_od.cc | 2 +- modules/img/alg/src/norm_od.hh | 2 +- modules/img/alg/src/normalizer.cc | 2 +- modules/img/alg/src/normalizer.hh | 2 +- modules/img/alg/src/normalizer_factory.cc | 2 +- modules/img/alg/src/normalizer_factory.hh | 2 +- modules/img/alg/src/polar.cc | 2 +- modules/img/alg/src/polar.hh | 2 +- modules/img/alg/src/power_spectrum.cc | 2 +- modules/img/alg/src/power_spectrum.hh | 2 +- modules/img/alg/src/randomize.cc | 2 +- modules/img/alg/src/randomize.hh | 2 +- modules/img/alg/src/rscrosscorr.cc | 2 +- modules/img/alg/src/rscrosscorr.hh | 2 +- modules/img/alg/src/smooth_mask_image.cc | 2 +- modules/img/alg/src/smooth_mask_image.hh | 2 +- modules/img/alg/src/stat.cc | 2 +- modules/img/alg/src/stat.hh | 2 +- modules/img/alg/src/stat_min_max.cc | 2 +- modules/img/alg/src/stat_min_max.hh | 2 +- modules/img/alg/src/threshold.cc | 2 +- modules/img/alg/src/threshold.hh | 2 +- modules/img/alg/src/transcendentals.hh | 2 +- modules/img/alg/src/transform.hh | 2 +- modules/img/alg/src/transform_fw.hh | 2 +- modules/img/alg/src/transformation_base.cc | 2 +- modules/img/alg/src/transformation_base.hh | 2 +- modules/img/alg/src/transformations.cc | 2 +- modules/img/alg/src/transformations.hh | 2 +- modules/img/alg/tests/test_clear.cc | 2 +- modules/img/alg/tests/test_conj.cc | 2 +- modules/img/alg/tests/test_convolute.cc | 2 +- modules/img/alg/tests/test_discrete_shrink.cc | 2 +- modules/img/alg/tests/test_fft.cc | 2 +- modules/img/alg/tests/test_fill.cc | 2 +- modules/img/alg/tests/test_filter.cc | 2 +- modules/img/alg/tests/test_histogram.cc | 2 +- modules/img/alg/tests/test_mirror.cc | 2 +- modules/img/alg/tests/test_negate.cc | 2 +- modules/img/alg/tests/test_power_spectrum.cc | 2 +- modules/img/alg/tests/test_shift.cc | 2 +- modules/img/alg/tests/test_stat.cc | 2 +- modules/img/alg/tests/test_transform.cc | 2 +- modules/img/alg/tests/test_utils.hh | 2 +- modules/img/alg/tests/tests.cc | 2 +- modules/img/alg/tests/tests.hh | 2 +- modules/img/base/pymod/__init__.py | 2 +- modules/img/base/pymod/export_data.cc | 2 +- modules/img/base/pymod/export_data_algorithm.cc | 2 +- modules/img/base/pymod/export_extent.cc | 2 +- modules/img/base/pymod/export_function.cc | 2 +- modules/img/base/pymod/export_image_handle.cc | 2 +- modules/img/base/pymod/export_image_list.cc | 2 +- modules/img/base/pymod/export_map.cc | 2 +- modules/img/base/pymod/export_mask.cc | 2 +- modules/img/base/pymod/export_peak.cc | 2 +- modules/img/base/pymod/export_phase.cc | 2 +- modules/img/base/pymod/export_point.cc | 2 +- modules/img/base/pymod/export_progress.cc | 2 +- modules/img/base/pymod/export_raster_image.cc | 2 +- modules/img/base/pymod/export_size.cc | 2 +- modules/img/base/pymod/wrap_extent_iterator.hh | 2 +- modules/img/base/pymod/wrap_img.cc | 2 +- modules/img/base/src/algorithm.hh | 2 +- modules/img/base/src/base.hh | 2 +- modules/img/base/src/circle_mask.cc | 2 +- modules/img/base/src/circle_mask.hh | 2 +- modules/img/base/src/composite_mask.cc | 2 +- modules/img/base/src/composite_mask.hh | 2 +- modules/img/base/src/data.cc | 2 +- modules/img/base/src/data.hh | 2 +- modules/img/base/src/data_algorithm.cc | 2 +- modules/img/base/src/data_algorithm.hh | 2 +- modules/img/base/src/data_observer.cc | 2 +- modules/img/base/src/data_observer.hh | 2 +- modules/img/base/src/data_types.hh | 2 +- modules/img/base/src/debug.hh | 2 +- modules/img/base/src/dllexport.hh | 2 +- modules/img/base/src/extent.cc | 2 +- modules/img/base/src/extent.hh | 2 +- modules/img/base/src/extent_iterator.cc | 2 +- modules/img/base/src/extent_iterator.hh | 2 +- modules/img/base/src/extent_mask.cc | 2 +- modules/img/base/src/extent_mask.hh | 2 +- modules/img/base/src/function.hh | 2 +- modules/img/base/src/function_base.cc | 2 +- modules/img/base/src/function_base.hh | 2 +- modules/img/base/src/function_fw.hh | 2 +- modules/img/base/src/function_impl.cc | 2 +- modules/img/base/src/function_impl.hh | 2 +- modules/img/base/src/image.hh | 2 +- modules/img/base/src/image_factory.cc | 2 +- modules/img/base/src/image_factory.hh | 2 +- modules/img/base/src/image_fw.hh | 2 +- modules/img/base/src/image_handle.cc | 2 +- modules/img/base/src/image_handle.hh | 2 +- modules/img/base/src/image_handle_fw.hh | 2 +- modules/img/base/src/image_impl.cc | 2 +- modules/img/base/src/image_impl.hh | 2 +- modules/img/base/src/image_list.cc | 2 +- modules/img/base/src/image_list.hh | 2 +- modules/img/base/src/image_state.hh | 2 +- modules/img/base/src/image_state/binop.cc | 2 +- modules/img/base/src/image_state/binop.hh | 2 +- modules/img/base/src/image_state/dispatch.hh | 2 +- modules/img/base/src/image_state/dispatch_fw.hh | 2 +- modules/img/base/src/image_state/image_state.hh | 2 +- modules/img/base/src/image_state/image_state_algorithm.cc | 2 +- modules/img/base/src/image_state/image_state_algorithm.hh | 2 +- modules/img/base/src/image_state/image_state_base.cc | 2 +- modules/img/base/src/image_state/image_state_base.hh | 2 +- modules/img/base/src/image_state/image_state_base_fw.hh | 2 +- modules/img/base/src/image_state/image_state_def.hh | 2 +- modules/img/base/src/image_state/image_state_factory.cc | 2 +- modules/img/base/src/image_state/image_state_factory.hh | 2 +- modules/img/base/src/image_state/image_state_fft.cc | 2 +- modules/img/base/src/image_state/image_state_fft.hh | 2 +- .../img/base/src/image_state/image_state_frequency_domain.hh | 2 +- modules/img/base/src/image_state/image_state_fw.hh | 2 +- .../base/src/image_state/image_state_half_frequency_domain.hh | 2 +- modules/img/base/src/image_state/image_state_impl.cc | 2 +- modules/img/base/src/image_state/image_state_impl.hh | 2 +- modules/img/base/src/image_state/image_state_inst.hh | 2 +- .../img/base/src/image_state/image_state_spatial_domain.hh | 2 +- modules/img/base/src/image_state/image_state_visitor.hh | 2 +- modules/img/base/src/image_state/image_state_visitor_fw.hh | 2 +- modules/img/base/src/image_state/index.cc | 2 +- modules/img/base/src/image_state/index.hh | 2 +- modules/img/base/src/image_state/test_inst.cc | 2 +- modules/img/base/src/image_state/type_fw.hh | 2 +- modules/img/base/src/image_state/value_holder.cc | 2 +- modules/img/base/src/image_state/value_holder.hh | 2 +- modules/img/base/src/image_state_fw.hh | 2 +- modules/img/base/src/inverted_mask.cc | 2 +- modules/img/base/src/inverted_mask.hh | 2 +- modules/img/base/src/map.cc | 2 +- modules/img/base/src/map.hh | 2 +- modules/img/base/src/mask.cc | 2 +- modules/img/base/src/mask.hh | 2 +- modules/img/base/src/mask_base.cc | 2 +- modules/img/base/src/mask_base.hh | 2 +- modules/img/base/src/mask_base_fw.hh | 2 +- modules/img/base/src/mask_info_convert.cc | 2 +- modules/img/base/src/mask_info_convert.hh | 2 +- modules/img/base/src/mask_op.cc | 2 +- modules/img/base/src/mask_op.hh | 2 +- modules/img/base/src/mask_visitor.hh | 2 +- modules/img/base/src/module_config.hh | 2 +- modules/img/base/src/normalizer_fw.hh | 2 +- modules/img/base/src/normalizer_impl.hh | 2 +- modules/img/base/src/null_data.hh | 2 +- modules/img/base/src/null_function.hh | 2 +- modules/img/base/src/observable.hh | 2 +- modules/img/base/src/paste_impl.cc | 2 +- modules/img/base/src/paste_impl.hh | 2 +- modules/img/base/src/peak.cc | 2 +- modules/img/base/src/peak.hh | 2 +- modules/img/base/src/phase.cc | 2 +- modules/img/base/src/phase.hh | 2 +- modules/img/base/src/physical_units.cc | 2 +- modules/img/base/src/physical_units.hh | 2 +- modules/img/base/src/pixel_sampling.cc | 2 +- modules/img/base/src/pixel_sampling.hh | 2 +- modules/img/base/src/point.cc | 2 +- modules/img/base/src/point.hh | 2 +- modules/img/base/src/point_list.cc | 2 +- modules/img/base/src/point_list.hh | 2 +- modules/img/base/src/polygon_mask.cc | 2 +- modules/img/base/src/polygon_mask.hh | 2 +- modules/img/base/src/progress.cc | 2 +- modules/img/base/src/progress.hh | 2 +- modules/img/base/src/raster_image/raster_image.cc | 2 +- modules/img/base/src/raster_image/raster_image.hh | 2 +- modules/img/base/src/size.cc | 2 +- modules/img/base/src/size.hh | 2 +- modules/img/base/src/spherical_mask.cc | 2 +- modules/img/base/src/spherical_mask.hh | 2 +- modules/img/base/src/util.cc | 2 +- modules/img/base/src/util.hh | 2 +- modules/img/base/src/value_util.hh | 2 +- modules/img/base/src/vecmat.hh | 2 +- modules/img/base/tests/simple_test.cc | 2 +- modules/img/base/tests/single_test_image_handle_mem.cc | 2 +- modules/img/base/tests/test_data.cc | 2 +- modules/img/base/tests/test_data.hh | 2 +- modules/img/base/tests/test_domains.cc | 2 +- modules/img/base/tests/test_extent.cc | 2 +- modules/img/base/tests/test_extent.hh | 2 +- modules/img/base/tests/test_function.cc | 2 +- modules/img/base/tests/test_function.hh | 2 +- modules/img/base/tests/test_image.cc | 2 +- modules/img/base/tests/test_image.hh | 2 +- modules/img/base/tests/test_image_factory.cc | 2 +- modules/img/base/tests/test_image_factory.hh | 2 +- modules/img/base/tests/test_image_impl.cc | 2 +- modules/img/base/tests/test_image_impl.hh | 2 +- modules/img/base/tests/test_image_state.cc | 2 +- modules/img/base/tests/test_image_state.hh | 2 +- modules/img/base/tests/test_image_state_visitor.cc | 2 +- modules/img/base/tests/test_image_state_visitor.hh | 2 +- modules/img/base/tests/test_index.cc | 2 +- modules/img/base/tests/test_index.hh | 2 +- modules/img/base/tests/test_point.cc | 2 +- modules/img/base/tests/test_point.hh | 2 +- modules/img/base/tests/test_sampling.cc | 2 +- modules/img/base/tests/test_sampling.hh | 2 +- modules/img/base/tests/test_size.cc | 2 +- modules/img/base/tests/test_size.hh | 2 +- modules/img/base/tests/test_transform.hh | 2 +- modules/img/base/tests/test_utils.hh | 2 +- modules/img/base/tests/test_value_holder.cc | 2 +- modules/img/base/tests/test_value_holder.hh | 2 +- modules/img/base/tests/tests.cc | 2 +- modules/info/pymod/__init__.py | 2 +- modules/info/pymod/wrap_info.cc | 2 +- modules/info/src/geom_info_conversion.cc | 2 +- modules/info/src/geom_info_conversion.hh | 2 +- modules/info/src/info.hh | 2 +- modules/info/src/info_error.hh | 2 +- modules/info/src/info_fw.hh | 2 +- modules/info/src/info_group.cc | 2 +- modules/info/src/info_group.hh | 2 +- modules/info/src/info_handle.cc | 2 +- modules/info/src/info_handle.hh | 2 +- modules/info/src/info_impl.cc | 2 +- modules/info/src/info_impl.hh | 2 +- modules/info/src/info_impl_fw.hh | 2 +- modules/info/src/info_item.cc | 2 +- modules/info/src/info_item.hh | 2 +- modules/info/src/info_path.cc | 2 +- modules/info/src/info_path.hh | 2 +- modules/info/src/info_set.cc | 2 +- modules/info/src/info_set.hh | 2 +- modules/info/src/info_verbose_visitor.cc | 2 +- modules/info/src/info_verbose_visitor.hh | 2 +- modules/info/src/info_visitor.cc | 2 +- modules/info/src/info_visitor.hh | 2 +- modules/info/src/item_type.hh | 2 +- modules/info/src/item_type_cast.hh | 2 +- modules/info/src/module_config.hh | 2 +- modules/io/pymod/__init__.py | 2 +- modules/io/pymod/export_map_io.cc | 2 +- modules/io/pymod/export_pdb_io.cc | 2 +- modules/io/pymod/wrap_io.cc | 2 +- modules/io/src/binary_data_sink.hh | 2 +- modules/io/src/binary_data_source.hh | 2 +- modules/io/src/container_serialization.hh | 2 +- modules/io/src/convert.cc | 2 +- modules/io/src/convert.hh | 2 +- modules/io/src/converting_streams.hh | 2 +- modules/io/src/img/image_format.hh | 2 +- modules/io/src/img/image_format_conversion.cc | 2 +- modules/io/src/img/image_io_plugin.hh | 2 +- modules/io/src/img/jpk_util.hh | 2 +- modules/io/src/img/load_map.cc | 2 +- modules/io/src/img/load_map.hh | 2 +- modules/io/src/img/map_io_dat_handler.cc | 2 +- modules/io/src/img/map_io_dat_handler.hh | 2 +- modules/io/src/img/map_io_df3_handler.cc | 2 +- modules/io/src/img/map_io_df3_handler.hh | 2 +- modules/io/src/img/map_io_dm3_handler.cc | 2 +- modules/io/src/img/map_io_dm3_handler.hh | 2 +- modules/io/src/img/map_io_dx_handler.cc | 2 +- modules/io/src/img/map_io_dx_handler.hh | 2 +- modules/io/src/img/map_io_handler.hh | 2 +- modules/io/src/img/map_io_jpk_handler.cc | 2 +- modules/io/src/img/map_io_jpk_handler.hh | 2 +- modules/io/src/img/map_io_mrc_handler.cc | 2 +- modules/io/src/img/map_io_mrc_handler.hh | 2 +- modules/io/src/img/map_io_nanoscope_handler.cc | 2 +- modules/io/src/img/map_io_nanoscope_handler.hh | 2 +- modules/io/src/img/map_io_png_handler.cc | 2 +- modules/io/src/img/map_io_png_handler.hh | 2 +- modules/io/src/img/map_io_situs_handler.cc | 2 +- modules/io/src/img/map_io_situs_handler.hh | 2 +- modules/io/src/img/map_io_spi_handler.cc | 2 +- modules/io/src/img/map_io_spi_handler.hh | 2 +- modules/io/src/img/map_io_tiff_handler.cc | 2 +- modules/io/src/img/map_io_tiff_handler.hh | 2 +- modules/io/src/img/tiff_util.cc | 2 +- modules/io/src/img/tiff_util.hh | 2 +- modules/io/src/io_exception.hh | 2 +- modules/io/src/io_manager.cc | 2 +- modules/io/src/io_manager.hh | 2 +- modules/io/src/io_utils.cc | 2 +- modules/io/src/io_utils.hh | 2 +- modules/io/src/module_config.hh | 2 +- modules/io/src/mol/chemdict_parser.hh | 2 +- modules/io/src/mol/dcd_io.cc | 2 +- modules/io/src/mol/dcd_io.hh | 2 +- modules/io/src/mol/entity_io_crd_handler.cc | 2 +- modules/io/src/mol/entity_io_crd_handler.hh | 2 +- modules/io/src/mol/entity_io_handler.hh | 2 +- modules/io/src/mol/entity_io_mae_handler.cc | 2 +- modules/io/src/mol/entity_io_mae_handler.hh | 4 ++-- modules/io/src/mol/entity_io_pdb_handler.cc | 2 +- modules/io/src/mol/entity_io_pdb_handler.hh | 2 +- modules/io/src/mol/entity_io_sdf_handler.cc | 2 +- modules/io/src/mol/entity_io_sdf_handler.hh | 2 +- modules/io/src/mol/io_profile.hh | 2 +- modules/io/src/mol/load_entity.cc | 2 +- modules/io/src/mol/load_entity.hh | 2 +- modules/io/src/mol/load_surface.cc | 2 +- modules/io/src/mol/load_surface.hh | 2 +- modules/io/src/mol/pdb_reader.cc | 2 +- modules/io/src/mol/pdb_reader.hh | 2 +- modules/io/src/mol/pdb_writer.cc | 2 +- modules/io/src/mol/pdb_writer.hh | 2 +- modules/io/src/mol/save_entity.cc | 2 +- modules/io/src/mol/save_entity.hh | 2 +- modules/io/src/mol/sdf_reader.cc | 2 +- modules/io/src/mol/sdf_reader.hh | 2 +- modules/io/src/mol/sdf_writer.cc | 2 +- modules/io/src/mol/sdf_writer.hh | 2 +- modules/io/src/mol/star_parser.cc | 2 +- modules/io/src/mol/star_parser.hh | 2 +- modules/io/src/mol/surface_io_handler.hh | 2 +- modules/io/src/mol/surface_io_msms_handler.cc | 2 +- modules/io/src/mol/surface_io_msms_handler.hh | 2 +- modules/io/src/seq/clustal_io_handler.cc | 2 +- modules/io/src/seq/clustal_io_handler.hh | 2 +- modules/io/src/seq/fasta_io_handler.cc | 2 +- modules/io/src/seq/fasta_io_handler.hh | 2 +- modules/io/src/seq/load.cc | 2 +- modules/io/src/seq/load.hh | 2 +- modules/io/src/seq/pir_io_handler.cc | 2 +- modules/io/src/seq/pir_io_handler.hh | 2 +- modules/io/src/seq/promod_io_handler.cc | 2 +- modules/io/src/seq/promod_io_handler.hh | 2 +- modules/io/src/seq/save.cc | 2 +- modules/io/src/seq/save.hh | 2 +- modules/io/src/seq/sequence_io_handler.hh | 2 +- modules/io/src/swap_util.hh | 2 +- modules/io/tests/test_clustal.cc | 2 +- modules/io/tests/test_io_crd.cc | 2 +- modules/io/tests/test_io_pdb.cc | 2 +- modules/io/tests/test_io_sdf.cc | 2 +- modules/io/tests/test_iomanager.cc | 2 +- modules/io/tests/test_pir.cc | 2 +- modules/io/tests/test_star_parser.cc | 2 +- modules/io/tests/tests.cc | 2 +- modules/mol/alg/pymod/export_entity_to_density.cc | 2 +- modules/mol/alg/pymod/export_svd_superpose.cc | 2 +- modules/mol/alg/pymod/wrap_mol_alg.cc | 2 +- modules/mol/alg/src/filter_clashes.cc | 2 +- modules/mol/alg/src/filter_clashes.hh | 2 +- modules/mol/alg/src/ldt.cc | 2 +- modules/mol/alg/src/local_dist_test.hh | 2 +- modules/mol/alg/src/module_config.hh | 2 +- modules/mol/alg/src/sec_structure_segments.cc | 2 +- modules/mol/alg/src/sec_structure_segments.hh | 2 +- modules/mol/alg/src/superpose_frames.cc | 2 +- modules/mol/alg/src/superpose_frames.hh | 2 +- modules/mol/alg/src/svd_superpose.cc | 2 +- modules/mol/alg/src/svd_superpose.hh | 2 +- modules/mol/alg/tests/test_superposition.cc | 2 +- modules/mol/alg/tests/tests.cc | 2 +- modules/mol/base/pymod/__init__.py | 2 +- modules/mol/base/pymod/export_atom.cc | 2 +- modules/mol/base/pymod/export_atom_view.cc | 2 +- modules/mol/base/pymod/export_bond.cc | 2 +- modules/mol/base/pymod/export_bounding_box.cc | 2 +- modules/mol/base/pymod/export_chain.cc | 2 +- modules/mol/base/pymod/export_chain_view.cc | 2 +- modules/mol/base/pymod/export_coord_group.cc | 2 +- modules/mol/base/pymod/export_editors.cc | 2 +- modules/mol/base/pymod/export_entity.cc | 2 +- modules/mol/base/pymod/export_entity_view.cc | 2 +- modules/mol/base/pymod/export_property_id.cc | 2 +- modules/mol/base/pymod/export_query.cc | 2 +- modules/mol/base/pymod/export_query_view_wrapper.cc | 2 +- modules/mol/base/pymod/export_residue.cc | 2 +- modules/mol/base/pymod/export_residue_view.cc | 2 +- modules/mol/base/pymod/export_surface.cc | 2 +- modules/mol/base/pymod/export_torsion.cc | 2 +- modules/mol/base/pymod/export_visitor.cc | 2 +- modules/mol/base/pymod/wrap_mol.cc | 2 +- modules/mol/base/src/atom_base.cc | 2 +- modules/mol/base/src/atom_base.hh | 2 +- modules/mol/base/src/atom_handle.cc | 2 +- modules/mol/base/src/atom_handle.hh | 2 +- modules/mol/base/src/atom_view.cc | 2 +- modules/mol/base/src/atom_view.hh | 2 +- modules/mol/base/src/bond_handle.cc | 2 +- modules/mol/base/src/bond_handle.hh | 2 +- modules/mol/base/src/bond_table.hh | 2 +- modules/mol/base/src/bounding_box.cc | 2 +- modules/mol/base/src/bounding_box.hh | 2 +- modules/mol/base/src/chain_base.cc | 2 +- modules/mol/base/src/chain_base.hh | 2 +- modules/mol/base/src/chain_handle.cc | 2 +- modules/mol/base/src/chain_handle.hh | 2 +- modules/mol/base/src/chain_view.cc | 2 +- modules/mol/base/src/chain_view.hh | 2 +- modules/mol/base/src/chem_class.hh | 2 +- modules/mol/base/src/coord_frame.hh | 2 +- modules/mol/base/src/coord_group.cc | 2 +- modules/mol/base/src/coord_group.hh | 2 +- modules/mol/base/src/coord_source.cc | 2 +- modules/mol/base/src/coord_source.hh | 2 +- modules/mol/base/src/editor_base.cc | 2 +- modules/mol/base/src/editor_base.hh | 2 +- modules/mol/base/src/editor_type_fw.hh | 2 +- modules/mol/base/src/entity_base.cc | 2 +- modules/mol/base/src/entity_base.hh | 2 +- modules/mol/base/src/entity_handle.cc | 2 +- modules/mol/base/src/entity_handle.hh | 2 +- modules/mol/base/src/entity_observer.cc | 2 +- modules/mol/base/src/entity_observer.hh | 2 +- modules/mol/base/src/entity_observer_fw.hh | 2 +- modules/mol/base/src/entity_property_mapper.cc | 2 +- modules/mol/base/src/entity_property_mapper.hh | 2 +- modules/mol/base/src/entity_view.cc | 2 +- modules/mol/base/src/entity_view.hh | 2 +- modules/mol/base/src/entity_visitor.cc | 2 +- modules/mol/base/src/entity_visitor.hh | 2 +- modules/mol/base/src/entity_visitor_fw.hh | 2 +- modules/mol/base/src/handle_type_fw.hh | 2 +- modules/mol/base/src/ics_editor.cc | 2 +- modules/mol/base/src/ics_editor.hh | 2 +- modules/mol/base/src/impl/atom_group.hh | 2 +- modules/mol/base/src/impl/atom_impl.cc | 2 +- modules/mol/base/src/impl/atom_impl.hh | 2 +- modules/mol/base/src/impl/atom_impl_fw.hh | 2 +- modules/mol/base/src/impl/atom_prop.cc | 2 +- modules/mol/base/src/impl/atom_prop.hh | 2 +- modules/mol/base/src/impl/chain_impl.cc | 2 +- modules/mol/base/src/impl/chain_impl.hh | 2 +- modules/mol/base/src/impl/chain_impl_fw.hh | 2 +- modules/mol/base/src/impl/connector_impl.cc | 2 +- modules/mol/base/src/impl/connector_impl.hh | 2 +- modules/mol/base/src/impl/connector_impl_fw.hh | 2 +- modules/mol/base/src/impl/dataset_impl.hh | 2 +- modules/mol/base/src/impl/dataset_impl_fw.hh | 2 +- modules/mol/base/src/impl/dihedral.cc | 2 +- modules/mol/base/src/impl/dihedral.hh | 2 +- modules/mol/base/src/impl/entity_impl.cc | 2 +- modules/mol/base/src/impl/entity_impl.hh | 2 +- modules/mol/base/src/impl/entity_impl_fw.hh | 2 +- modules/mol/base/src/impl/fragment_impl.cc | 2 +- modules/mol/base/src/impl/fragment_impl.hh | 2 +- modules/mol/base/src/impl/fragment_impl_fw.hh | 2 +- modules/mol/base/src/impl/pointer_iterator.hh | 2 +- modules/mol/base/src/impl/query_ast.cc | 2 +- modules/mol/base/src/impl/query_ast.hh | 2 +- modules/mol/base/src/impl/query_impl.cc | 2 +- modules/mol/base/src/impl/query_impl.hh | 2 +- modules/mol/base/src/impl/query_impl_fw.hh | 2 +- modules/mol/base/src/impl/residue_impl.cc | 2 +- modules/mol/base/src/impl/residue_impl.hh | 2 +- modules/mol/base/src/impl/residue_impl_fw.hh | 2 +- modules/mol/base/src/impl/surface_impl.cc | 2 +- modules/mol/base/src/impl/surface_impl.hh | 2 +- modules/mol/base/src/impl/surface_impl_fw.hh | 2 +- modules/mol/base/src/impl/torsion_impl.cc | 2 +- modules/mol/base/src/impl/torsion_impl.hh | 2 +- modules/mol/base/src/impl/torsion_impl_fw.hh | 2 +- modules/mol/base/src/in_mem_coord_source.hh | 2 +- modules/mol/base/src/iterator.cc | 2 +- modules/mol/base/src/iterator.hh | 2 +- modules/mol/base/src/iterator_fw.hh | 2 +- modules/mol/base/src/module_config.hh | 2 +- modules/mol/base/src/mol.hh | 2 +- modules/mol/base/src/not_connected_error.cc | 2 +- modules/mol/base/src/not_connected_error.hh | 2 +- modules/mol/base/src/property_id.cc | 2 +- modules/mol/base/src/property_id.hh | 2 +- modules/mol/base/src/query.cc | 2 +- modules/mol/base/src/query.hh | 2 +- modules/mol/base/src/query_error.cc | 2 +- modules/mol/base/src/query_error.hh | 2 +- modules/mol/base/src/query_state.cc | 2 +- modules/mol/base/src/query_state.hh | 2 +- modules/mol/base/src/query_view_wrapper.cc | 2 +- modules/mol/base/src/query_view_wrapper.hh | 2 +- modules/mol/base/src/residue_base.cc | 2 +- modules/mol/base/src/residue_base.hh | 2 +- modules/mol/base/src/residue_handle.cc | 2 +- modules/mol/base/src/residue_handle.hh | 2 +- modules/mol/base/src/residue_prop.hh | 2 +- modules/mol/base/src/residue_view.cc | 2 +- modules/mol/base/src/residue_view.hh | 2 +- modules/mol/base/src/sec_structure.hh | 2 +- modules/mol/base/src/skel_link.cc | 2 +- modules/mol/base/src/skel_link.hh | 2 +- modules/mol/base/src/skel_link_fw.hh | 2 +- modules/mol/base/src/spatial_organizer.hh | 2 +- modules/mol/base/src/surface.hh | 2 +- modules/mol/base/src/surface_builder.cc | 2 +- modules/mol/base/src/surface_builder.hh | 2 +- modules/mol/base/src/surface_handle.cc | 2 +- modules/mol/base/src/surface_handle.hh | 2 +- modules/mol/base/src/surface_prop.hh | 2 +- modules/mol/base/src/torsion_handle.cc | 2 +- modules/mol/base/src/torsion_handle.hh | 2 +- modules/mol/base/src/transform.cc | 2 +- modules/mol/base/src/transform.hh | 2 +- modules/mol/base/src/view_op.cc | 2 +- modules/mol/base/src/view_op.hh | 2 +- modules/mol/base/src/view_type_fw.hh | 2 +- modules/mol/base/src/xcs_editor.cc | 2 +- modules/mol/base/src/xcs_editor.hh | 2 +- modules/mol/base/tests/dummy_ent.hh | 2 +- modules/mol/base/tests/test_atom_groups.cc | 2 +- modules/mol/base/tests/test_chain.cc | 2 +- modules/mol/base/tests/test_conn.cc | 2 +- modules/mol/base/tests/test_coord_group.cc | 2 +- modules/mol/base/tests/test_delete.cc | 2 +- modules/mol/base/tests/test_entity.cc | 2 +- modules/mol/base/tests/test_ics.cc | 2 +- modules/mol/base/tests/test_iterators.cc | 2 +- modules/mol/base/tests/test_query.cc | 2 +- modules/mol/base/tests/test_residue.cc | 2 +- modules/mol/base/tests/test_surface.cc | 2 +- modules/mol/base/tests/test_view.cc | 2 +- modules/mol/base/tests/test_view_op.cc | 2 +- modules/mol/base/tests/tests.cc | 2 +- modules/qa/pymod/__init__.py | 2 +- modules/qa/pymod/export_clash.cc | 2 +- modules/qa/pymod/export_interaction.cc | 2 +- modules/qa/pymod/export_packing.cc | 2 +- modules/qa/pymod/export_reduced.cc | 2 +- modules/qa/pymod/export_torsion.cc | 2 +- modules/qa/pymod/pdbtools.py | 2 +- modules/qa/pymod/wrap_qa.cc | 2 +- modules/qa/src/all_atom_potential.cc | 2 +- modules/qa/src/all_atom_potential.hh | 2 +- modules/qa/src/amino_acids.cc | 2 +- modules/qa/src/amino_acids.hh | 2 +- modules/qa/src/atom_types.cc | 2 +- modules/qa/src/atom_types.hh | 2 +- modules/qa/src/clash_score.cc | 2 +- modules/qa/src/clash_score.hh | 2 +- modules/qa/src/histogram.hh | 2 +- modules/qa/src/impl/reduced_impl.hh | 2 +- modules/qa/src/index.hh | 2 +- modules/qa/src/interaction_statistics.cc | 2 +- modules/qa/src/interaction_statistics.hh | 2 +- modules/qa/src/module_config.hh | 2 +- modules/qa/src/multi_classifier.hh | 2 +- modules/qa/src/packing_potential.cc | 2 +- modules/qa/src/packing_potential.hh | 2 +- modules/qa/src/packing_statistics.cc | 2 +- modules/qa/src/packing_statistics.hh | 2 +- modules/qa/src/rapdf.cc | 2 +- modules/qa/src/rapdf.hh | 2 +- modules/qa/src/reduced_potential.cc | 2 +- modules/qa/src/reduced_potential.hh | 2 +- modules/qa/src/reduced_statistics.cc | 2 +- modules/qa/src/reduced_statistics.hh | 2 +- modules/qa/src/solis_torsion_potential.cc | 2 +- modules/qa/src/solis_torsion_potential.hh | 2 +- modules/qa/src/solis_torsion_statistics.cc | 2 +- modules/qa/src/solis_torsion_statistics.hh | 2 +- modules/qa/src/torsion_potential.cc | 2 +- modules/qa/src/torsion_potential.hh | 2 +- modules/qa/src/torsion_statistics.cc | 2 +- modules/qa/src/torsion_statistics.hh | 2 +- modules/seq/alg/pymod/wrap_seq_alg.cc | 2 +- modules/seq/alg/src/alignment_opts.hh | 2 +- modules/seq/alg/src/conservation.cc | 2 +- modules/seq/alg/src/conservation.hh | 2 +- modules/seq/alg/src/ins_del.cc | 2 +- modules/seq/alg/src/ins_del.hh | 2 +- modules/seq/alg/src/merge_pairwise_alignments.cc | 2 +- modules/seq/alg/src/merge_pairwise_alignments.hh | 2 +- modules/seq/alg/src/module_config.hh | 2 +- modules/seq/alg/src/sequence_identity.cc | 2 +- modules/seq/alg/src/sequence_identity.hh | 2 +- modules/seq/alg/src/subst_weight_matrix.cc | 2 +- modules/seq/alg/src/subst_weight_matrix.hh | 2 +- modules/seq/alg/tests/test_merge_pairwise_alignments.cc | 2 +- modules/seq/alg/tests/test_sequence_identity.cc | 2 +- modules/seq/alg/tests/tests.cc | 2 +- modules/seq/base/pymod/__init__.py | 2 +- modules/seq/base/pymod/const_seq_list_export_def.hh | 2 +- modules/seq/base/pymod/export_sequence.cc | 2 +- modules/seq/base/pymod/wrap_seq.cc | 2 +- modules/seq/base/src/aligned_column.cc | 2 +- modules/seq/base/src/aligned_column.hh | 2 +- modules/seq/base/src/aligned_column_iterator.hh | 2 +- modules/seq/base/src/aligned_region.cc | 2 +- modules/seq/base/src/aligned_region.hh | 2 +- modules/seq/base/src/alignment_handle.cc | 2 +- modules/seq/base/src/alignment_handle.hh | 2 +- modules/seq/base/src/impl/sequence_impl.cc | 2 +- modules/seq/base/src/impl/sequence_impl.hh | 2 +- modules/seq/base/src/impl/sequence_impl_fw.hh | 2 +- modules/seq/base/src/impl/sequence_list_impl.cc | 2 +- modules/seq/base/src/impl/sequence_list_impl.hh | 2 +- modules/seq/base/src/impl/sequence_list_impl_fw.hh | 2 +- modules/seq/base/src/impl/sequence_list_iterator.hh | 2 +- modules/seq/base/src/invalid_sequence.hh | 2 +- modules/seq/base/src/module_config.hh | 2 +- modules/seq/base/src/sequence_handle.cc | 2 +- modules/seq/base/src/sequence_handle.hh | 2 +- modules/seq/base/src/sequence_list.cc | 2 +- modules/seq/base/src/sequence_list.hh | 2 +- modules/seq/base/src/sequence_op.cc | 2 +- modules/seq/base/src/sequence_op.hh | 2 +- modules/seq/base/src/views_from_sequences.cc | 2 +- modules/seq/base/src/views_from_sequences.hh | 2 +- modules/seq/base/tests/test_aligned_column.cc | 2 +- modules/seq/base/tests/test_aligned_region.cc | 2 +- modules/seq/base/tests/test_alignment.cc | 2 +- modules/seq/base/tests/test_sequence.cc | 2 +- modules/seq/base/tests/tests.cc | 2 +- scripts/dng.bat.in | 2 +- scripts/dng.in | 2 +- scripts/dng_cl.in | 2 +- scripts/gipltng.bat.in | 2 +- scripts/gipltng.in | 2 +- scripts/ost.bat.in | 2 +- scripts/ost.in | 2 +- 1305 files changed, 1306 insertions(+), 1306 deletions(-) diff --git a/deployment/README.html.in b/deployment/README.html.in index 864ff6e75..2201c8d3d 100644 --- a/deployment/README.html.in +++ b/deployment/README.html.in @@ -18,7 +18,7 @@ -----------------------------README----------------------------------------<br/> This file is part of the OpenStructure project <www.openstructure.org><br/> <br/> - Copyright (C) 2008-2010 by the OpenStructure authors<br/> + Copyright (C) 2008-2011 by the OpenStructure authors<br/> <br/> This library is free software; you can redistribute it and/or modify it under<br/> the terms of the GNU Lesser General Public License as published by the Free<br/> diff --git a/deployment/win/dng.bat b/deployment/win/dng.bat index 388e79e93..f16b3c4bd 100644 --- a/deployment/win/dng.bat +++ b/deployment/win/dng.bat @@ -2,7 +2,7 @@ REM ------------------------------------------------------------------------------ REM This file is part of the OpenStructure project <www.openstructure.org> REM -REM Copyright (C) 2008-2010 by the OpenStructure authors +REM Copyright (C) 2008-2011 by the OpenStructure authors REM REM This library is free software; you can redistribute it and/or modify it under REM the terms of the GNU Lesser General Public License as published by the Free diff --git a/examples/code_fragments/ui/mdi_example.py b/examples/code_fragments/ui/mdi_example.py index 80e999776..ba8b14d8c 100644 --- a/examples/code_fragments/ui/mdi_example.py +++ b/examples/code_fragments/ui/mdi_example.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/examples/code_fragments/ui/menubar_example.py b/examples/code_fragments/ui/menubar_example.py index 40a193bca..fc953b7ad 100644 --- a/examples/code_fragments/ui/menubar_example.py +++ b/examples/code_fragments/ui/menubar_example.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/examples/code_fragments/ui/widget_example.py b/examples/code_fragments/ui/widget_example.py index 733e9dcdb..80aee7d5e 100644 --- a/examples/code_fragments/ui/widget_example.py +++ b/examples/code_fragments/ui/widget_example.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/base/pymod/__init__.py b/modules/base/pymod/__init__.py index 286bedced..5457c46ca 100644 --- a/modules/base/pymod/__init__.py +++ b/modules/base/pymod/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/base/pymod/export_generic_property.cc b/modules/base/pymod/export_generic_property.cc index 881865849..f36a12d06 100644 --- a/modules/base/pymod/export_generic_property.cc +++ b/modules/base/pymod/export_generic_property.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/pymod/export_logger.cc b/modules/base/pymod/export_logger.cc index d0b080022..91baeaea0 100644 --- a/modules/base/pymod/export_logger.cc +++ b/modules/base/pymod/export_logger.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/pymod/export_range.cc b/modules/base/pymod/export_range.cc index 0651d920d..6aea1e0c1 100644 --- a/modules/base/pymod/export_range.cc +++ b/modules/base/pymod/export_range.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/pymod/export_units.cc b/modules/base/pymod/export_units.cc index d4f025b57..1a50040f4 100644 --- a/modules/base/pymod/export_units.cc +++ b/modules/base/pymod/export_units.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/base/pymod/wrap_base.cc b/modules/base/pymod/wrap_base.cc index 790c32201..735cb8323 100644 --- a/modules/base/pymod/wrap_base.cc +++ b/modules/base/pymod/wrap_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/dyn_cast.hh b/modules/base/src/dyn_cast.hh index da1d8d106..c5c5c6253 100644 --- a/modules/base/src/dyn_cast.hh +++ b/modules/base/src/dyn_cast.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/export_helper/generic_property_def.hh b/modules/base/src/export_helper/generic_property_def.hh index 84a486bc3..ef13e3490 100644 --- a/modules/base/src/export_helper/generic_property_def.hh +++ b/modules/base/src/export_helper/generic_property_def.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/export_helper/pair_to_tuple_conv.hh b/modules/base/src/export_helper/pair_to_tuple_conv.hh index eba6ebd9b..90eccdb49 100644 --- a/modules/base/src/export_helper/pair_to_tuple_conv.hh +++ b/modules/base/src/export_helper/pair_to_tuple_conv.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/generic_property.cc b/modules/base/src/generic_property.cc index 58ce64144..d537009e5 100644 --- a/modules/base/src/generic_property.cc +++ b/modules/base/src/generic_property.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/generic_property.hh b/modules/base/src/generic_property.hh index 8787d95bd..a7ea07825 100644 --- a/modules/base/src/generic_property.hh +++ b/modules/base/src/generic_property.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/integrity_error.hh b/modules/base/src/integrity_error.hh index ba3271fae..ca6b01616 100644 --- a/modules/base/src/integrity_error.hh +++ b/modules/base/src/integrity_error.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/invalid_handle.hh b/modules/base/src/invalid_handle.hh index fdb56203e..314d23cd4 100644 --- a/modules/base/src/invalid_handle.hh +++ b/modules/base/src/invalid_handle.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/log.cc b/modules/base/src/log.cc index 55d348b75..a8c40a630 100644 --- a/modules/base/src/log.cc +++ b/modules/base/src/log.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/log.hh b/modules/base/src/log.hh index 4b129767d..934ee37bb 100644 --- a/modules/base/src/log.hh +++ b/modules/base/src/log.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/log_sink.cc b/modules/base/src/log_sink.cc index 9dad7e5e2..4521e74a3 100644 --- a/modules/base/src/log_sink.cc +++ b/modules/base/src/log_sink.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/log_sink.hh b/modules/base/src/log_sink.hh index 4878d7f4a..f4b14d007 100644 --- a/modules/base/src/log_sink.hh +++ b/modules/base/src/log_sink.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/message.cc b/modules/base/src/message.cc index 401ff1fb8..eff6b1c68 100644 --- a/modules/base/src/message.cc +++ b/modules/base/src/message.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/base/src/message.hh b/modules/base/src/message.hh index aca6387f6..6a98dbc2b 100644 --- a/modules/base/src/message.hh +++ b/modules/base/src/message.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/base/src/module_config.hh b/modules/base/src/module_config.hh index b9a8f3ca4..6a4c6adf4 100644 --- a/modules/base/src/module_config.hh +++ b/modules/base/src/module_config.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/platform.cc b/modules/base/src/platform.cc index 5186a4e84..492a6a4a5 100644 --- a/modules/base/src/platform.cc +++ b/modules/base/src/platform.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/platform.hh b/modules/base/src/platform.hh index 13e58e308..57af6e9b5 100644 --- a/modules/base/src/platform.hh +++ b/modules/base/src/platform.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/pod_vector.hh b/modules/base/src/pod_vector.hh index 46b05bef7..5e45bd2f8 100644 --- a/modules/base/src/pod_vector.hh +++ b/modules/base/src/pod_vector.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/profile.cc b/modules/base/src/profile.cc index e1dc2d246..1a3bae89c 100644 --- a/modules/base/src/profile.cc +++ b/modules/base/src/profile.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/profile.hh b/modules/base/src/profile.hh index 44b21b1f4..a255bfce2 100644 --- a/modules/base/src/profile.hh +++ b/modules/base/src/profile.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/ptr_observer.hh b/modules/base/src/ptr_observer.hh index 6bcbf4a4e..a5f9cfbb1 100644 --- a/modules/base/src/ptr_observer.hh +++ b/modules/base/src/ptr_observer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/base/src/range.hh b/modules/base/src/range.hh index 8cbfd728e..64f78a183 100644 --- a/modules/base/src/range.hh +++ b/modules/base/src/range.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/string_ref.cc b/modules/base/src/string_ref.cc index af19d7b8f..5cc42986b 100644 --- a/modules/base/src/string_ref.cc +++ b/modules/base/src/string_ref.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/string_ref.hh b/modules/base/src/string_ref.hh index c6150b922..febf26f30 100644 --- a/modules/base/src/string_ref.hh +++ b/modules/base/src/string_ref.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/test_utils/compare_files.cc b/modules/base/src/test_utils/compare_files.cc index 762439021..30aaf652c 100644 --- a/modules/base/src/test_utils/compare_files.cc +++ b/modules/base/src/test_utils/compare_files.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/test_utils/compare_files.hh b/modules/base/src/test_utils/compare_files.hh index 8944e0805..15edfa7c6 100644 --- a/modules/base/src/test_utils/compare_files.hh +++ b/modules/base/src/test_utils/compare_files.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/src/units.cc b/modules/base/src/units.cc index c64eedfc5..cb0f7dc55 100644 --- a/modules/base/src/units.cc +++ b/modules/base/src/units.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/base/src/units.hh b/modules/base/src/units.hh index 60a819393..65dcd8004 100644 --- a/modules/base/src/units.hh +++ b/modules/base/src/units.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/tests/test_generic_property.cc b/modules/base/tests/test_generic_property.cc index 8b946685c..754d5ead4 100644 --- a/modules/base/tests/test_generic_property.cc +++ b/modules/base/tests/test_generic_property.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/tests/test_pod_vector.cc b/modules/base/tests/test_pod_vector.cc index d4e7d71d7..f5dd2003f 100644 --- a/modules/base/tests/test_pod_vector.cc +++ b/modules/base/tests/test_pod_vector.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/tests/test_string_ref.cc b/modules/base/tests/test_string_ref.cc index afe85cb64..50793bff7 100644 --- a/modules/base/tests/test_string_ref.cc +++ b/modules/base/tests/test_string_ref.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/base/tests/tests.cc b/modules/base/tests/tests.cc index 6d3e758f5..2d38b16a5 100644 --- a/modules/base/tests/tests.cc +++ b/modules/base/tests/tests.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/config/base.hh b/modules/config/base.hh index d119fb8ce..02bdc2b4c 100644 --- a/modules/config/base.hh +++ b/modules/config/base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/config/config.hh.in b/modules/config/config.hh.in index 20ac7eab4..0095327dd 100644 --- a/modules/config/config.hh.in +++ b/modules/config/config.hh.in @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/config/dllexport.hh b/modules/config/dllexport.hh index fd08c659d..3cacc7c0b 100755 --- a/modules/config/dllexport.hh +++ b/modules/config/dllexport.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/pymod/__init__.py b/modules/conop/pymod/__init__.py index c2704d393..a40cfa86a 100644 --- a/modules/conop/pymod/__init__.py +++ b/modules/conop/pymod/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/conop/pymod/export_builder.cc b/modules/conop/pymod/export_builder.cc index 9e23e0569..291f62c1a 100644 --- a/modules/conop/pymod/export_builder.cc +++ b/modules/conop/pymod/export_builder.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/pymod/export_compound.cc b/modules/conop/pymod/export_compound.cc index 379f20598..6e95a0c24 100644 --- a/modules/conop/pymod/export_compound.cc +++ b/modules/conop/pymod/export_compound.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/pymod/export_conop.cc b/modules/conop/pymod/export_conop.cc index 64d12ffd2..1a2e689a3 100644 --- a/modules/conop/pymod/export_conop.cc +++ b/modules/conop/pymod/export_conop.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/pymod/export_ring_finder.cc b/modules/conop/pymod/export_ring_finder.cc index 5a02f4986..7f48ced62 100644 --- a/modules/conop/pymod/export_ring_finder.cc +++ b/modules/conop/pymod/export_ring_finder.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/pymod/wrap_conop.cc b/modules/conop/pymod/wrap_conop.cc index a7bcd1cb0..00ea6e6a9 100644 --- a/modules/conop/pymod/wrap_conop.cc +++ b/modules/conop/pymod/wrap_conop.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/builder.cc b/modules/conop/src/builder.cc index b50048c5e..36fcf7bab 100644 --- a/modules/conop/src/builder.cc +++ b/modules/conop/src/builder.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/builder.hh b/modules/conop/src/builder.hh index 3946780d1..f912aba70 100644 --- a/modules/conop/src/builder.hh +++ b/modules/conop/src/builder.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/builder_fw.hh b/modules/conop/src/builder_fw.hh index 75edf116e..c61de7bec 100644 --- a/modules/conop/src/builder_fw.hh +++ b/modules/conop/src/builder_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/chemdict_tool.cc b/modules/conop/src/chemdict_tool.cc index 65fca9310..21ff69293 100644 --- a/modules/conop/src/chemdict_tool.cc +++ b/modules/conop/src/chemdict_tool.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/compound.cc b/modules/conop/src/compound.cc index f3f0e5042..dfa1a69f9 100644 --- a/modules/conop/src/compound.cc +++ b/modules/conop/src/compound.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/compound.hh b/modules/conop/src/compound.hh index f381649ab..082427879 100644 --- a/modules/conop/src/compound.hh +++ b/modules/conop/src/compound.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/compound_lib.cc b/modules/conop/src/compound_lib.cc index b1878a973..fd5b76631 100644 --- a/modules/conop/src/compound_lib.cc +++ b/modules/conop/src/compound_lib.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/compound_lib.hh b/modules/conop/src/compound_lib.hh index 3d642d512..0db0f7637 100644 --- a/modules/conop/src/compound_lib.hh +++ b/modules/conop/src/compound_lib.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/conop.cc b/modules/conop/src/conop.cc index b1448aa8f..138d62c7c 100644 --- a/modules/conop/src/conop.cc +++ b/modules/conop/src/conop.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/conop.hh b/modules/conop/src/conop.hh index 0d9fccf7b..1234a30fd 100644 --- a/modules/conop/src/conop.hh +++ b/modules/conop/src/conop.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/heuristic_builder.cc b/modules/conop/src/heuristic_builder.cc index c808dbd08..c23860e90 100644 --- a/modules/conop/src/heuristic_builder.cc +++ b/modules/conop/src/heuristic_builder.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/heuristic_builder.hh b/modules/conop/src/heuristic_builder.hh index bcfccdbb1..d6eca8b4d 100644 --- a/modules/conop/src/heuristic_builder.hh +++ b/modules/conop/src/heuristic_builder.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/heuristic_connect.cc b/modules/conop/src/heuristic_connect.cc index 1e20c3e44..c6de76d80 100644 --- a/modules/conop/src/heuristic_connect.cc +++ b/modules/conop/src/heuristic_connect.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/heuristic_connect.hh b/modules/conop/src/heuristic_connect.hh index c3f6336a0..9ed74e554 100644 --- a/modules/conop/src/heuristic_connect.hh +++ b/modules/conop/src/heuristic_connect.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/heuristic_connect_table.hh b/modules/conop/src/heuristic_connect_table.hh index 6251d1070..ae200aac1 100644 --- a/modules/conop/src/heuristic_connect_table.hh +++ b/modules/conop/src/heuristic_connect_table.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/module_config.hh b/modules/conop/src/module_config.hh index 81debeb80..224a38c88 100644 --- a/modules/conop/src/module_config.hh +++ b/modules/conop/src/module_config.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/ring_finder.cc b/modules/conop/src/ring_finder.cc index cbb9a6fb9..96f0c5378 100755 --- a/modules/conop/src/ring_finder.cc +++ b/modules/conop/src/ring_finder.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/ring_finder.hh b/modules/conop/src/ring_finder.hh index b5dfd9f3b..599dfadf9 100755 --- a/modules/conop/src/ring_finder.hh +++ b/modules/conop/src/ring_finder.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/rule_based_builder.cc b/modules/conop/src/rule_based_builder.cc index 03bfb13a2..0406d372c 100644 --- a/modules/conop/src/rule_based_builder.cc +++ b/modules/conop/src/rule_based_builder.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/src/rule_based_builder.hh b/modules/conop/src/rule_based_builder.hh index ff35e0adb..a5e6f160b 100644 --- a/modules/conop/src/rule_based_builder.hh +++ b/modules/conop/src/rule_based_builder.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/tests/test_builder.cc b/modules/conop/tests/test_builder.cc index 9a4ff6aa6..b557b76f3 100644 --- a/modules/conop/tests/test_builder.cc +++ b/modules/conop/tests/test_builder.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/conop/tests/test_heuristic_builder.cc b/modules/conop/tests/test_heuristic_builder.cc index 33a1aaa76..6a01a237d 100644 --- a/modules/conop/tests/test_heuristic_builder.cc +++ b/modules/conop/tests/test_heuristic_builder.cc @@ -1,7 +1,7 @@ // ------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // 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 diff --git a/modules/conop/tests/tests.cc b/modules/conop/tests/tests.cc index 9c6b3c383..aa255bcd2 100644 --- a/modules/conop/tests/tests.cc +++ b/modules/conop/tests/tests.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/db/pymod/__init__.py b/modules/db/pymod/__init__.py index 0115ad33b..2ce41f6fd 100644 --- a/modules/db/pymod/__init__.py +++ b/modules/db/pymod/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/db/src/module_config.hh b/modules/db/src/module_config.hh index 4b6888b92..cdc876ae1 100644 --- a/modules/db/src/module_config.hh +++ b/modules/db/src/module_config.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/db/src/sqlite_conv.hh b/modules/db/src/sqlite_conv.hh index 38630376a..afcc6030a 100644 --- a/modules/db/src/sqlite_conv.hh +++ b/modules/db/src/sqlite_conv.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/db/src/sqlite_wrap.cc b/modules/db/src/sqlite_wrap.cc index aa310aa23..f67d85cb0 100644 --- a/modules/db/src/sqlite_wrap.cc +++ b/modules/db/src/sqlite_wrap.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/db/src/sqlite_wrap.hh b/modules/db/src/sqlite_wrap.hh index cc0559d8d..e2e8234fd 100644 --- a/modules/db/src/sqlite_wrap.hh +++ b/modules/db/src/sqlite_wrap.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/pymod/__init__.py b/modules/geom/pymod/__init__.py index c2e59b0a7..5ea879126 100644 --- a/modules/geom/pymod/__init__.py +++ b/modules/geom/pymod/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/geom/pymod/export_composite2.cc b/modules/geom/pymod/export_composite2.cc index 96f42ab26..d208ab107 100644 --- a/modules/geom/pymod/export_composite2.cc +++ b/modules/geom/pymod/export_composite2.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/pymod/export_composite2_op.cc b/modules/geom/pymod/export_composite2_op.cc index 161fdc2bf..2ea8462b1 100644 --- a/modules/geom/pymod/export_composite2_op.cc +++ b/modules/geom/pymod/export_composite2_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/pymod/export_composite3.cc b/modules/geom/pymod/export_composite3.cc index df7cafa3c..47988768c 100644 --- a/modules/geom/pymod/export_composite3.cc +++ b/modules/geom/pymod/export_composite3.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/pymod/export_composite3_op.cc b/modules/geom/pymod/export_composite3_op.cc index 77a5b65f3..ba6faf85f 100644 --- a/modules/geom/pymod/export_composite3_op.cc +++ b/modules/geom/pymod/export_composite3_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/pymod/export_mat2.cc b/modules/geom/pymod/export_mat2.cc index 88bf24c89..ff8159cab 100644 --- a/modules/geom/pymod/export_mat2.cc +++ b/modules/geom/pymod/export_mat2.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/pymod/export_mat3.cc b/modules/geom/pymod/export_mat3.cc index 9f9e24532..613c6f41b 100644 --- a/modules/geom/pymod/export_mat3.cc +++ b/modules/geom/pymod/export_mat3.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/pymod/export_mat4.cc b/modules/geom/pymod/export_mat4.cc index 9ccd34b24..071c46d58 100644 --- a/modules/geom/pymod/export_mat4.cc +++ b/modules/geom/pymod/export_mat4.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/pymod/export_quat.cc b/modules/geom/pymod/export_quat.cc index b3d22b2e2..7368ede77 100644 --- a/modules/geom/pymod/export_quat.cc +++ b/modules/geom/pymod/export_quat.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/pymod/export_vec2.cc b/modules/geom/pymod/export_vec2.cc index 43366e6db..586b9b9d6 100644 --- a/modules/geom/pymod/export_vec2.cc +++ b/modules/geom/pymod/export_vec2.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/pymod/export_vec3.cc b/modules/geom/pymod/export_vec3.cc index a077c25dd..6966015e2 100644 --- a/modules/geom/pymod/export_vec3.cc +++ b/modules/geom/pymod/export_vec3.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/pymod/export_vec4.cc b/modules/geom/pymod/export_vec4.cc index 9bb393654..409cf1cc2 100644 --- a/modules/geom/pymod/export_vec4.cc +++ b/modules/geom/pymod/export_vec4.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/pymod/export_vecmat2_op.cc b/modules/geom/pymod/export_vecmat2_op.cc index e2d199c29..2e5b2e568 100644 --- a/modules/geom/pymod/export_vecmat2_op.cc +++ b/modules/geom/pymod/export_vecmat2_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/pymod/export_vecmat3_op.cc b/modules/geom/pymod/export_vecmat3_op.cc index 5f0939b1a..9e66832f8 100644 --- a/modules/geom/pymod/export_vecmat3_op.cc +++ b/modules/geom/pymod/export_vecmat3_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/pymod/export_vecmat4_op.cc b/modules/geom/pymod/export_vecmat4_op.cc index ec9ec7a2f..c4baaf63a 100644 --- a/modules/geom/pymod/export_vecmat4_op.cc +++ b/modules/geom/pymod/export_vecmat4_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/pymod/import_wrapper.hh b/modules/geom/pymod/import_wrapper.hh index 4c3fd35c0..fa687fa24 100644 --- a/modules/geom/pymod/import_wrapper.hh +++ b/modules/geom/pymod/import_wrapper.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/pymod/wrap_geom.cc b/modules/geom/pymod/wrap_geom.cc index 58d638380..e5b753e52 100644 --- a/modules/geom/pymod/wrap_geom.cc +++ b/modules/geom/pymod/wrap_geom.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/aligned_cuboid.cc b/modules/geom/src/aligned_cuboid.cc index 6de69e69b..3440e2359 100644 --- a/modules/geom/src/aligned_cuboid.cc +++ b/modules/geom/src/aligned_cuboid.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/aligned_cuboid.hh b/modules/geom/src/aligned_cuboid.hh index 2cc123e62..fc2d72ab6 100644 --- a/modules/geom/src/aligned_cuboid.hh +++ b/modules/geom/src/aligned_cuboid.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/circular_iterator.hh b/modules/geom/src/circular_iterator.hh index 2ae10bf28..2e8755944 100644 --- a/modules/geom/src/circular_iterator.hh +++ b/modules/geom/src/circular_iterator.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/composite.hh b/modules/geom/src/composite.hh index 9fb2cc1a0..6d1ad48c1 100644 --- a/modules/geom/src/composite.hh +++ b/modules/geom/src/composite.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/composite2.cc b/modules/geom/src/composite2.cc index f6d7f6857..b72d334dd 100644 --- a/modules/geom/src/composite2.cc +++ b/modules/geom/src/composite2.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/composite2.hh b/modules/geom/src/composite2.hh index 897288c66..bcbc9a779 100644 --- a/modules/geom/src/composite2.hh +++ b/modules/geom/src/composite2.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/composite2_op.cc b/modules/geom/src/composite2_op.cc index 5044771a8..897512768 100644 --- a/modules/geom/src/composite2_op.cc +++ b/modules/geom/src/composite2_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/composite2_op.hh b/modules/geom/src/composite2_op.hh index a076f188e..71eb1b3c6 100644 --- a/modules/geom/src/composite2_op.hh +++ b/modules/geom/src/composite2_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/composite3.cc b/modules/geom/src/composite3.cc index af18601a6..2017a6d2e 100644 --- a/modules/geom/src/composite3.cc +++ b/modules/geom/src/composite3.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/composite3.hh b/modules/geom/src/composite3.hh index ae42e109e..72b885319 100644 --- a/modules/geom/src/composite3.hh +++ b/modules/geom/src/composite3.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/composite3_op.cc b/modules/geom/src/composite3_op.cc index c313d13ff..1c5b699d2 100644 --- a/modules/geom/src/composite3_op.cc +++ b/modules/geom/src/composite3_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/composite3_op.hh b/modules/geom/src/composite3_op.hh index 0688c088a..4e6a2ad1a 100644 --- a/modules/geom/src/composite3_op.hh +++ b/modules/geom/src/composite3_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/composite_op.hh b/modules/geom/src/composite_op.hh index d67c2fc4a..b81c5a32d 100644 --- a/modules/geom/src/composite_op.hh +++ b/modules/geom/src/composite_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/constants.hh b/modules/geom/src/constants.hh index 8be10f58f..5ef66e066 100644 --- a/modules/geom/src/constants.hh +++ b/modules/geom/src/constants.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/def.hh b/modules/geom/src/def.hh index 72c31209c..fb100fa79 100644 --- a/modules/geom/src/def.hh +++ b/modules/geom/src/def.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/exc.hh b/modules/geom/src/exc.hh index d67e4c8e8..67eda2278 100644 --- a/modules/geom/src/exc.hh +++ b/modules/geom/src/exc.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/exception.hh b/modules/geom/src/exception.hh index 0e77f5f26..dded87565 100644 --- a/modules/geom/src/exception.hh +++ b/modules/geom/src/exception.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/fnc.hh b/modules/geom/src/fnc.hh index 365f02bea..742fb30eb 100644 --- a/modules/geom/src/fnc.hh +++ b/modules/geom/src/fnc.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/geom.hh b/modules/geom/src/geom.hh index 84a4db224..138e8da92 100644 --- a/modules/geom/src/geom.hh +++ b/modules/geom/src/geom.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/mat.hh b/modules/geom/src/mat.hh index 4df168b6f..8127088ac 100644 --- a/modules/geom/src/mat.hh +++ b/modules/geom/src/mat.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/mat2.cc b/modules/geom/src/mat2.cc index 06e196d8c..d0bf5809d 100644 --- a/modules/geom/src/mat2.cc +++ b/modules/geom/src/mat2.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/mat2.hh b/modules/geom/src/mat2.hh index bc53416f2..53fd0c59e 100644 --- a/modules/geom/src/mat2.hh +++ b/modules/geom/src/mat2.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/mat3.cc b/modules/geom/src/mat3.cc index a202f20a3..edf414eb8 100644 --- a/modules/geom/src/mat3.cc +++ b/modules/geom/src/mat3.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/mat3.hh b/modules/geom/src/mat3.hh index d16a14f55..448a66513 100644 --- a/modules/geom/src/mat3.hh +++ b/modules/geom/src/mat3.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/mat4.cc b/modules/geom/src/mat4.cc index 340e5f46f..7e2476cab 100644 --- a/modules/geom/src/mat4.cc +++ b/modules/geom/src/mat4.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/mat4.hh b/modules/geom/src/mat4.hh index ca8bc201f..0c504a571 100644 --- a/modules/geom/src/mat4.hh +++ b/modules/geom/src/mat4.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/module_config.hh b/modules/geom/src/module_config.hh index 3840aac29..760e1ae87 100644 --- a/modules/geom/src/module_config.hh +++ b/modules/geom/src/module_config.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/point_cloud.cc b/modules/geom/src/point_cloud.cc index 2c4760d9f..72a755200 100644 --- a/modules/geom/src/point_cloud.cc +++ b/modules/geom/src/point_cloud.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/point_cloud.hh b/modules/geom/src/point_cloud.hh index e360f2a36..6188dbf26 100644 --- a/modules/geom/src/point_cloud.hh +++ b/modules/geom/src/point_cloud.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/quat.cc b/modules/geom/src/quat.cc index 14aa5e60c..b923a6680 100644 --- a/modules/geom/src/quat.cc +++ b/modules/geom/src/quat.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/quat.hh b/modules/geom/src/quat.hh index d2d1ea3e4..4347952c0 100644 --- a/modules/geom/src/quat.hh +++ b/modules/geom/src/quat.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/vec.hh b/modules/geom/src/vec.hh index 4b057afcf..70871d227 100644 --- a/modules/geom/src/vec.hh +++ b/modules/geom/src/vec.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/vec2.hh b/modules/geom/src/vec2.hh index 8432856ea..110ab3108 100644 --- a/modules/geom/src/vec2.hh +++ b/modules/geom/src/vec2.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/vec3.cc b/modules/geom/src/vec3.cc index 7a2553167..a21d150d6 100644 --- a/modules/geom/src/vec3.cc +++ b/modules/geom/src/vec3.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/vec3.hh b/modules/geom/src/vec3.hh index 47b301fb3..5b31dd7a4 100644 --- a/modules/geom/src/vec3.hh +++ b/modules/geom/src/vec3.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/vec4.hh b/modules/geom/src/vec4.hh index 5442fc203..dd72be585 100644 --- a/modules/geom/src/vec4.hh +++ b/modules/geom/src/vec4.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/vecmat2_op.cc b/modules/geom/src/vecmat2_op.cc index c23866293..69f2e8e8c 100644 --- a/modules/geom/src/vecmat2_op.cc +++ b/modules/geom/src/vecmat2_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/vecmat2_op.hh b/modules/geom/src/vecmat2_op.hh index 31ae6430a..65a027f74 100644 --- a/modules/geom/src/vecmat2_op.hh +++ b/modules/geom/src/vecmat2_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/vecmat3_op.cc b/modules/geom/src/vecmat3_op.cc index 3066deef9..c4b0a6c14 100644 --- a/modules/geom/src/vecmat3_op.cc +++ b/modules/geom/src/vecmat3_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/vecmat3_op.hh b/modules/geom/src/vecmat3_op.hh index 94c3c77b3..39d0f7117 100644 --- a/modules/geom/src/vecmat3_op.hh +++ b/modules/geom/src/vecmat3_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/vecmat4_op.cc b/modules/geom/src/vecmat4_op.cc index 456757541..b1bce87d4 100644 --- a/modules/geom/src/vecmat4_op.cc +++ b/modules/geom/src/vecmat4_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/vecmat4_op.hh b/modules/geom/src/vecmat4_op.hh index 7f7d6a2a9..a3cbf8531 100644 --- a/modules/geom/src/vecmat4_op.hh +++ b/modules/geom/src/vecmat4_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/geom/src/vecmat_op.hh b/modules/geom/src/vecmat_op.hh index fdd202bc1..400d5f1aa 100644 --- a/modules/geom/src/vecmat_op.hh +++ b/modules/geom/src/vecmat_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/pymod/__init__.py b/modules/gfx/pymod/__init__.py index 5788da8cf..509d9c271 100644 --- a/modules/gfx/pymod/__init__.py +++ b/modules/gfx/pymod/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gfx/pymod/color_by_def.hh b/modules/gfx/pymod/color_by_def.hh index d45bb327e..41436d833 100644 --- a/modules/gfx/pymod/color_by_def.hh +++ b/modules/gfx/pymod/color_by_def.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/pymod/export_color_ops.cc b/modules/gfx/pymod/export_color_ops.cc index e0863e362..fd974b22d 100644 --- a/modules/gfx/pymod/export_color_ops.cc +++ b/modules/gfx/pymod/export_color_ops.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/pymod/export_entity.cc b/modules/gfx/pymod/export_entity.cc index 9092a6344..78dd67f09 100644 --- a/modules/gfx/pymod/export_entity.cc +++ b/modules/gfx/pymod/export_entity.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/pymod/export_gfx_node.cc b/modules/gfx/pymod/export_gfx_node.cc index 3bab8f34c..0ee0ec5a6 100644 --- a/modules/gfx/pymod/export_gfx_node.cc +++ b/modules/gfx/pymod/export_gfx_node.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/pymod/export_gfx_obj.cc b/modules/gfx/pymod/export_gfx_obj.cc index 565ef921a..704580559 100644 --- a/modules/gfx/pymod/export_gfx_obj.cc +++ b/modules/gfx/pymod/export_gfx_obj.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/pymod/export_glwin_base.cc b/modules/gfx/pymod/export_glwin_base.cc index b54fff042..52ef3045f 100644 --- a/modules/gfx/pymod/export_glwin_base.cc +++ b/modules/gfx/pymod/export_glwin_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/pymod/export_map.cc b/modules/gfx/pymod/export_map.cc index 7ba389b90..6bfc90865 100644 --- a/modules/gfx/pymod/export_map.cc +++ b/modules/gfx/pymod/export_map.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/pymod/export_primitives.cc b/modules/gfx/pymod/export_primitives.cc index 1798dbf94..91ce753ed 100644 --- a/modules/gfx/pymod/export_primitives.cc +++ b/modules/gfx/pymod/export_primitives.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/pymod/export_render_options.cc b/modules/gfx/pymod/export_render_options.cc index 54830abc9..e3f46ea4d 100644 --- a/modules/gfx/pymod/export_render_options.cc +++ b/modules/gfx/pymod/export_render_options.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/pymod/export_scene.cc b/modules/gfx/pymod/export_scene.cc index bf590ea04..f5692fad5 100644 --- a/modules/gfx/pymod/export_scene.cc +++ b/modules/gfx/pymod/export_scene.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/pymod/export_surface.cc b/modules/gfx/pymod/export_surface.cc index 9a589d077..b6031a616 100644 --- a/modules/gfx/pymod/export_surface.cc +++ b/modules/gfx/pymod/export_surface.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/pymod/export_symmetry_node.cc b/modules/gfx/pymod/export_symmetry_node.cc index 29d15db7a..f89d54a4b 100644 --- a/modules/gfx/pymod/export_symmetry_node.cc +++ b/modules/gfx/pymod/export_symmetry_node.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/pymod/wrap_gfx.cc b/modules/gfx/pymod/wrap_gfx.cc index 430c35595..94e317421 100644 --- a/modules/gfx/pymod/wrap_gfx.cc +++ b/modules/gfx/pymod/wrap_gfx.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/bitmap_io.cc b/modules/gfx/src/bitmap_io.cc index 8117d4cc4..6d36daaa1 100644 --- a/modules/gfx/src/bitmap_io.cc +++ b/modules/gfx/src/bitmap_io.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/bitmap_io.hh b/modules/gfx/src/bitmap_io.hh index ff2a0fd52..afddc220b 100644 --- a/modules/gfx/src/bitmap_io.hh +++ b/modules/gfx/src/bitmap_io.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color.cc b/modules/gfx/src/color.cc index 4b0c2f785..f99de522b 100644 --- a/modules/gfx/src/color.cc +++ b/modules/gfx/src/color.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color.hh b/modules/gfx/src/color.hh index 9357a1687..1fdee9fa6 100644 --- a/modules/gfx/src/color.hh +++ b/modules/gfx/src/color.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/basic_gradient_color_op.cc b/modules/gfx/src/color_ops/basic_gradient_color_op.cc index 39733eb6b..397ed3d41 100644 --- a/modules/gfx/src/color_ops/basic_gradient_color_op.cc +++ b/modules/gfx/src/color_ops/basic_gradient_color_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/basic_gradient_color_op.hh b/modules/gfx/src/color_ops/basic_gradient_color_op.hh index d8a4d3c44..6da2b9006 100644 --- a/modules/gfx/src/color_ops/basic_gradient_color_op.hh +++ b/modules/gfx/src/color_ops/basic_gradient_color_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/by_chain_color_op.cc b/modules/gfx/src/color_ops/by_chain_color_op.cc index e760d0e38..b2cd381a2 100644 --- a/modules/gfx/src/color_ops/by_chain_color_op.cc +++ b/modules/gfx/src/color_ops/by_chain_color_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/by_chain_color_op.hh b/modules/gfx/src/color_ops/by_chain_color_op.hh index 75193354b..2b41e737f 100644 --- a/modules/gfx/src/color_ops/by_chain_color_op.hh +++ b/modules/gfx/src/color_ops/by_chain_color_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/by_element_color_op.cc b/modules/gfx/src/color_ops/by_element_color_op.cc index c09e542d4..031fe5e32 100644 --- a/modules/gfx/src/color_ops/by_element_color_op.cc +++ b/modules/gfx/src/color_ops/by_element_color_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/by_element_color_op.hh b/modules/gfx/src/color_ops/by_element_color_op.hh index defceee74..0ad7c60d8 100644 --- a/modules/gfx/src/color_ops/by_element_color_op.hh +++ b/modules/gfx/src/color_ops/by_element_color_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/color_op.cc b/modules/gfx/src/color_ops/color_op.cc index 5003f9098..514650f84 100644 --- a/modules/gfx/src/color_ops/color_op.cc +++ b/modules/gfx/src/color_ops/color_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/color_op.hh b/modules/gfx/src/color_ops/color_op.hh index 7d891039d..7e9e433a7 100644 --- a/modules/gfx/src/color_ops/color_op.hh +++ b/modules/gfx/src/color_ops/color_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/entity_view_color_op.cc b/modules/gfx/src/color_ops/entity_view_color_op.cc index e52a25b71..de44bf1a0 100644 --- a/modules/gfx/src/color_ops/entity_view_color_op.cc +++ b/modules/gfx/src/color_ops/entity_view_color_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/entity_view_color_op.hh b/modules/gfx/src/color_ops/entity_view_color_op.hh index a0afba972..49e6e294b 100644 --- a/modules/gfx/src/color_ops/entity_view_color_op.hh +++ b/modules/gfx/src/color_ops/entity_view_color_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/gradient_color_op.cc b/modules/gfx/src/color_ops/gradient_color_op.cc index 8b2bc6595..192ad5632 100644 --- a/modules/gfx/src/color_ops/gradient_color_op.cc +++ b/modules/gfx/src/color_ops/gradient_color_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/gradient_color_op.hh b/modules/gfx/src/color_ops/gradient_color_op.hh index 6823981da..c6616e638 100644 --- a/modules/gfx/src/color_ops/gradient_color_op.hh +++ b/modules/gfx/src/color_ops/gradient_color_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/gradient_level_color_op.cc b/modules/gfx/src/color_ops/gradient_level_color_op.cc index 564fd763b..32429a095 100644 --- a/modules/gfx/src/color_ops/gradient_level_color_op.cc +++ b/modules/gfx/src/color_ops/gradient_level_color_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/gradient_level_color_op.hh b/modules/gfx/src/color_ops/gradient_level_color_op.hh index 5dd6a854b..1b453a48f 100644 --- a/modules/gfx/src/color_ops/gradient_level_color_op.hh +++ b/modules/gfx/src/color_ops/gradient_level_color_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/map_handle_color_op.cc b/modules/gfx/src/color_ops/map_handle_color_op.cc index 0bb2fc598..d09be806c 100644 --- a/modules/gfx/src/color_ops/map_handle_color_op.cc +++ b/modules/gfx/src/color_ops/map_handle_color_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/map_handle_color_op.hh b/modules/gfx/src/color_ops/map_handle_color_op.hh index 2340e3343..b0d1c15fb 100644 --- a/modules/gfx/src/color_ops/map_handle_color_op.hh +++ b/modules/gfx/src/color_ops/map_handle_color_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/uniform_color_op.cc b/modules/gfx/src/color_ops/uniform_color_op.cc index 91f0fb2fb..844731706 100644 --- a/modules/gfx/src/color_ops/uniform_color_op.cc +++ b/modules/gfx/src/color_ops/uniform_color_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/color_ops/uniform_color_op.hh b/modules/gfx/src/color_ops/uniform_color_op.hh index 4ebef48bf..518fc5792 100644 --- a/modules/gfx/src/color_ops/uniform_color_op.hh +++ b/modules/gfx/src/color_ops/uniform_color_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/entity.cc b/modules/gfx/src/entity.cc index e1c3fd0a6..317f74c53 100644 --- a/modules/gfx/src/entity.cc +++ b/modules/gfx/src/entity.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/entity.hh b/modules/gfx/src/entity.hh index e23860682..0200b592b 100644 --- a/modules/gfx/src/entity.hh +++ b/modules/gfx/src/entity.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/entity_fw.hh b/modules/gfx/src/entity_fw.hh index 3cf03859f..5e00ae29c 100644 --- a/modules/gfx/src/entity_fw.hh +++ b/modules/gfx/src/entity_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gfx.hh b/modules/gfx/src/gfx.hh index f8ff07f62..2a0d2303d 100644 --- a/modules/gfx/src/gfx.hh +++ b/modules/gfx/src/gfx.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gfx_fw.hh b/modules/gfx/src/gfx_fw.hh index a035c1247..e5efaacf9 100644 --- a/modules/gfx/src/gfx_fw.hh +++ b/modules/gfx/src/gfx_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gfx_node.cc b/modules/gfx/src/gfx_node.cc index ea4b58e89..e7f038a26 100644 --- a/modules/gfx/src/gfx_node.cc +++ b/modules/gfx/src/gfx_node.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gfx_node.hh b/modules/gfx/src/gfx_node.hh index aff956475..b211ca8a9 100644 --- a/modules/gfx/src/gfx_node.hh +++ b/modules/gfx/src/gfx_node.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gfx_node_fw.hh b/modules/gfx/src/gfx_node_fw.hh index 56e9c0687..744b350ef 100644 --- a/modules/gfx/src/gfx_node_fw.hh +++ b/modules/gfx/src/gfx_node_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gfx_node_visitor.hh b/modules/gfx/src/gfx_node_visitor.hh index 52619e932..5b1d49a6b 100644 --- a/modules/gfx/src/gfx_node_visitor.hh +++ b/modules/gfx/src/gfx_node_visitor.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gfx_object.cc b/modules/gfx/src/gfx_object.cc index c5f7fd2ac..cc09ada77 100644 --- a/modules/gfx/src/gfx_object.cc +++ b/modules/gfx/src/gfx_object.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gfx_object.hh b/modules/gfx/src/gfx_object.hh index 42f9fbbfe..b59009ba2 100644 --- a/modules/gfx/src/gfx_object.hh +++ b/modules/gfx/src/gfx_object.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gfx_object_base.hh b/modules/gfx/src/gfx_object_base.hh index 24b331a41..7884c7de4 100644 --- a/modules/gfx/src/gfx_object_base.hh +++ b/modules/gfx/src/gfx_object_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gfx_object_fw.hh b/modules/gfx/src/gfx_object_fw.hh index 56c9d1906..73118a522 100644 --- a/modules/gfx/src/gfx_object_fw.hh +++ b/modules/gfx/src/gfx_object_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gfx_prim.cc b/modules/gfx/src/gfx_prim.cc index 67e94807b..a5af981b1 100644 --- a/modules/gfx/src/gfx_prim.cc +++ b/modules/gfx/src/gfx_prim.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gfx_prim.hh b/modules/gfx/src/gfx_prim.hh index aead54653..c88a92368 100644 --- a/modules/gfx/src/gfx_prim.hh +++ b/modules/gfx/src/gfx_prim.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gfx_test_object.cc b/modules/gfx/src/gfx_test_object.cc index 69ae91439..5b2384730 100644 --- a/modules/gfx/src/gfx_test_object.cc +++ b/modules/gfx/src/gfx_test_object.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gfx_test_object.hh b/modules/gfx/src/gfx_test_object.hh index 95eeeb2cc..8d878d7c2 100644 --- a/modules/gfx/src/gfx_test_object.hh +++ b/modules/gfx/src/gfx_test_object.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gl_helper.hh b/modules/gfx/src/gl_helper.hh index 4243d2422..dac567894 100644 --- a/modules/gfx/src/gl_helper.hh +++ b/modules/gfx/src/gl_helper.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gl_include.hh b/modules/gfx/src/gl_include.hh index 2295ca6a3..69761cce0 100644 --- a/modules/gfx/src/gl_include.hh +++ b/modules/gfx/src/gl_include.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/glext_include.hh b/modules/gfx/src/glext_include.hh index 308103f42..8188b1265 100644 --- a/modules/gfx/src/glext_include.hh +++ b/modules/gfx/src/glext_include.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/glwin_base.hh b/modules/gfx/src/glwin_base.hh index 1be6d819f..7486540d5 100644 --- a/modules/gfx/src/glwin_base.hh +++ b/modules/gfx/src/glwin_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gradient.cc b/modules/gfx/src/gradient.cc index e0b50a92f..b2cca70fe 100644 --- a/modules/gfx/src/gradient.cc +++ b/modules/gfx/src/gradient.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gradient.hh b/modules/gfx/src/gradient.hh index 5b28b849b..bd142489c 100644 --- a/modules/gfx/src/gradient.hh +++ b/modules/gfx/src/gradient.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gradient_manager.cc b/modules/gfx/src/gradient_manager.cc index 9b6fb63f7..ab807ad18 100644 --- a/modules/gfx/src/gradient_manager.cc +++ b/modules/gfx/src/gradient_manager.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/gradient_manager.hh b/modules/gfx/src/gradient_manager.hh index 7551570ba..fe73bbe19 100644 --- a/modules/gfx/src/gradient_manager.hh +++ b/modules/gfx/src/gradient_manager.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/backbone_trace.cc b/modules/gfx/src/impl/backbone_trace.cc index 095da24f2..b890d76b4 100644 --- a/modules/gfx/src/impl/backbone_trace.cc +++ b/modules/gfx/src/impl/backbone_trace.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/backbone_trace.hh b/modules/gfx/src/impl/backbone_trace.hh index cb2e27e2b..1e0c6c1c7 100644 --- a/modules/gfx/src/impl/backbone_trace.hh +++ b/modules/gfx/src/impl/backbone_trace.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/cartoon_renderer.cc b/modules/gfx/src/impl/cartoon_renderer.cc index ce1a68676..d9b4577dd 100644 --- a/modules/gfx/src/impl/cartoon_renderer.cc +++ b/modules/gfx/src/impl/cartoon_renderer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/cartoon_renderer.hh b/modules/gfx/src/impl/cartoon_renderer.hh index c7f726c47..59be06b59 100644 --- a/modules/gfx/src/impl/cartoon_renderer.hh +++ b/modules/gfx/src/impl/cartoon_renderer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/cgl_offscreen_buffer.cc b/modules/gfx/src/impl/cgl_offscreen_buffer.cc index ea5e3599b..fa56d00ce 100644 --- a/modules/gfx/src/impl/cgl_offscreen_buffer.cc +++ b/modules/gfx/src/impl/cgl_offscreen_buffer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/cgl_offscreen_buffer.hh b/modules/gfx/src/impl/cgl_offscreen_buffer.hh index a9a673fb1..17d7854cb 100644 --- a/modules/gfx/src/impl/cgl_offscreen_buffer.hh +++ b/modules/gfx/src/impl/cgl_offscreen_buffer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/connect_renderer_base.cc b/modules/gfx/src/impl/connect_renderer_base.cc index e54763a16..f29443093 100644 --- a/modules/gfx/src/impl/connect_renderer_base.cc +++ b/modules/gfx/src/impl/connect_renderer_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/connect_renderer_base.hh b/modules/gfx/src/impl/connect_renderer_base.hh index 1c88950ff..0f4c7f237 100644 --- a/modules/gfx/src/impl/connect_renderer_base.hh +++ b/modules/gfx/src/impl/connect_renderer_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/cpk_renderer.cc b/modules/gfx/src/impl/cpk_renderer.cc index 47bec0384..3c1cf9f05 100644 --- a/modules/gfx/src/impl/cpk_renderer.cc +++ b/modules/gfx/src/impl/cpk_renderer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/cpk_renderer.hh b/modules/gfx/src/impl/cpk_renderer.hh index 241602b88..c32cb9cd1 100644 --- a/modules/gfx/src/impl/cpk_renderer.hh +++ b/modules/gfx/src/impl/cpk_renderer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/custom_renderer.cc b/modules/gfx/src/impl/custom_renderer.cc index c9e2a2319..ec3195464 100644 --- a/modules/gfx/src/impl/custom_renderer.cc +++ b/modules/gfx/src/impl/custom_renderer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/custom_renderer.hh b/modules/gfx/src/impl/custom_renderer.hh index e004f8cc7..8c5c1bd3d 100644 --- a/modules/gfx/src/impl/custom_renderer.hh +++ b/modules/gfx/src/impl/custom_renderer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/debug_renderer.cc b/modules/gfx/src/impl/debug_renderer.cc index bd8f883f0..3ff579078 100644 --- a/modules/gfx/src/impl/debug_renderer.cc +++ b/modules/gfx/src/impl/debug_renderer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/debug_renderer.hh b/modules/gfx/src/impl/debug_renderer.hh index 499a5d18c..22a6d432c 100644 --- a/modules/gfx/src/impl/debug_renderer.hh +++ b/modules/gfx/src/impl/debug_renderer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/entity_detail.cc b/modules/gfx/src/impl/entity_detail.cc index 55fab9f53..252da9743 100644 --- a/modules/gfx/src/impl/entity_detail.cc +++ b/modules/gfx/src/impl/entity_detail.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/entity_detail.hh b/modules/gfx/src/impl/entity_detail.hh index 2ae0a848f..4fc64525b 100644 --- a/modules/gfx/src/impl/entity_detail.hh +++ b/modules/gfx/src/impl/entity_detail.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/entity_renderer.cc b/modules/gfx/src/impl/entity_renderer.cc index 430dfb993..3464d1292 100644 --- a/modules/gfx/src/impl/entity_renderer.cc +++ b/modules/gfx/src/impl/entity_renderer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/entity_renderer.hh b/modules/gfx/src/impl/entity_renderer.hh index 4b467c011..14b2ee00c 100644 --- a/modules/gfx/src/impl/entity_renderer.hh +++ b/modules/gfx/src/impl/entity_renderer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/entity_renderer_fw.hh b/modules/gfx/src/impl/entity_renderer_fw.hh index f77ef0763..f07fbd625 100644 --- a/modules/gfx/src/impl/entity_renderer_fw.hh +++ b/modules/gfx/src/impl/entity_renderer_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/generate_map_iso_spec.py b/modules/gfx/src/impl/generate_map_iso_spec.py index 3221a63c2..74a9f58db 100644 --- a/modules/gfx/src/impl/generate_map_iso_spec.py +++ b/modules/gfx/src/impl/generate_map_iso_spec.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gfx/src/impl/glx_offscreen_buffer.cc b/modules/gfx/src/impl/glx_offscreen_buffer.cc index 1edb5773f..2c3002343 100644 --- a/modules/gfx/src/impl/glx_offscreen_buffer.cc +++ b/modules/gfx/src/impl/glx_offscreen_buffer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/glx_offscreen_buffer.hh b/modules/gfx/src/impl/glx_offscreen_buffer.hh index b5ad52f3b..df809d802 100644 --- a/modules/gfx/src/impl/glx_offscreen_buffer.hh +++ b/modules/gfx/src/impl/glx_offscreen_buffer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/line_trace_renderer.cc b/modules/gfx/src/impl/line_trace_renderer.cc index 3e89af0cd..56c362f68 100644 --- a/modules/gfx/src/impl/line_trace_renderer.cc +++ b/modules/gfx/src/impl/line_trace_renderer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/line_trace_renderer.hh b/modules/gfx/src/impl/line_trace_renderer.hh index ce42fc004..110492ccd 100644 --- a/modules/gfx/src/impl/line_trace_renderer.hh +++ b/modules/gfx/src/impl/line_trace_renderer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/map_iso_gen.cc b/modules/gfx/src/impl/map_iso_gen.cc index d02ec1c4e..603a7a0dd 100644 --- a/modules/gfx/src/impl/map_iso_gen.cc +++ b/modules/gfx/src/impl/map_iso_gen.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/map_iso_gen.hh b/modules/gfx/src/impl/map_iso_gen.hh index 9d4fadcb9..cd3f937c6 100644 --- a/modules/gfx/src/impl/map_iso_gen.hh +++ b/modules/gfx/src/impl/map_iso_gen.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/map_iso_gen_o.cc b/modules/gfx/src/impl/map_iso_gen_o.cc index 4db2b2fff..50bae81d5 100644 --- a/modules/gfx/src/impl/map_iso_gen_o.cc +++ b/modules/gfx/src/impl/map_iso_gen_o.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/map_iso_gen_o.hh b/modules/gfx/src/impl/map_iso_gen_o.hh index eff033c11..64e9cac07 100644 --- a/modules/gfx/src/impl/map_iso_gen_o.hh +++ b/modules/gfx/src/impl/map_iso_gen_o.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/map_iso_gen_s.cc b/modules/gfx/src/impl/map_iso_gen_s.cc index aa796891b..e1fe9818a 100644 --- a/modules/gfx/src/impl/map_iso_gen_s.cc +++ b/modules/gfx/src/impl/map_iso_gen_s.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/map_iso_gen_s.hh b/modules/gfx/src/impl/map_iso_gen_s.hh index 30e9adfa0..c0a925b84 100644 --- a/modules/gfx/src/impl/map_iso_gen_s.hh +++ b/modules/gfx/src/impl/map_iso_gen_s.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/map_iso_spec.hh b/modules/gfx/src/impl/map_iso_spec.hh index 433534065..c4520e078 100644 --- a/modules/gfx/src/impl/map_iso_spec.hh +++ b/modules/gfx/src/impl/map_iso_spec.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/map_octree.cc b/modules/gfx/src/impl/map_octree.cc index a130b6552..3190ff74c 100644 --- a/modules/gfx/src/impl/map_octree.cc +++ b/modules/gfx/src/impl/map_octree.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/map_octree.hh b/modules/gfx/src/impl/map_octree.hh index 4c73f54bd..0666880c1 100644 --- a/modules/gfx/src/impl/map_octree.hh +++ b/modules/gfx/src/impl/map_octree.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/mapped_property.cc b/modules/gfx/src/impl/mapped_property.cc index 7238b36d7..26b08d653 100644 --- a/modules/gfx/src/impl/mapped_property.cc +++ b/modules/gfx/src/impl/mapped_property.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/mapped_property.hh b/modules/gfx/src/impl/mapped_property.hh index d98ec7f5c..8ea37e670 100644 --- a/modules/gfx/src/impl/mapped_property.hh +++ b/modules/gfx/src/impl/mapped_property.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/octree_isocont.cc b/modules/gfx/src/impl/octree_isocont.cc index b46979651..2fccd83d8 100644 --- a/modules/gfx/src/impl/octree_isocont.cc +++ b/modules/gfx/src/impl/octree_isocont.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/octree_isocont.hh b/modules/gfx/src/impl/octree_isocont.hh index 128c18a51..b6c277ffb 100644 --- a/modules/gfx/src/impl/octree_isocont.hh +++ b/modules/gfx/src/impl/octree_isocont.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/scene_fx.hh b/modules/gfx/src/impl/scene_fx.hh index 49961c340..6e1f8b596 100644 --- a/modules/gfx/src/impl/scene_fx.hh +++ b/modules/gfx/src/impl/scene_fx.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/simple_renderer.cc b/modules/gfx/src/impl/simple_renderer.cc index a6684e5f9..97d2e50bc 100644 --- a/modules/gfx/src/impl/simple_renderer.cc +++ b/modules/gfx/src/impl/simple_renderer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/simple_renderer.hh b/modules/gfx/src/impl/simple_renderer.hh index 41b801cbd..95fd8bf03 100644 --- a/modules/gfx/src/impl/simple_renderer.hh +++ b/modules/gfx/src/impl/simple_renderer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/sline_renderer.cc b/modules/gfx/src/impl/sline_renderer.cc index c3655f34c..4ede7bc3c 100644 --- a/modules/gfx/src/impl/sline_renderer.cc +++ b/modules/gfx/src/impl/sline_renderer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/sline_renderer.hh b/modules/gfx/src/impl/sline_renderer.hh index 35c81bde9..88c03e5b3 100644 --- a/modules/gfx/src/impl/sline_renderer.hh +++ b/modules/gfx/src/impl/sline_renderer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/tabulated_trig.cc b/modules/gfx/src/impl/tabulated_trig.cc index 6244ad356..d46059c08 100644 --- a/modules/gfx/src/impl/tabulated_trig.cc +++ b/modules/gfx/src/impl/tabulated_trig.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/tabulated_trig.hh b/modules/gfx/src/impl/tabulated_trig.hh index ea11b217b..673f4e20b 100644 --- a/modules/gfx/src/impl/tabulated_trig.hh +++ b/modules/gfx/src/impl/tabulated_trig.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/trace_renderer.cc b/modules/gfx/src/impl/trace_renderer.cc index a6b442ee6..1395a3fdd 100644 --- a/modules/gfx/src/impl/trace_renderer.cc +++ b/modules/gfx/src/impl/trace_renderer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/trace_renderer.hh b/modules/gfx/src/impl/trace_renderer.hh index e8f9cff3b..380572adc 100644 --- a/modules/gfx/src/impl/trace_renderer.hh +++ b/modules/gfx/src/impl/trace_renderer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/trace_renderer_base.cc b/modules/gfx/src/impl/trace_renderer_base.cc index a63720b20..81a6fb979 100644 --- a/modules/gfx/src/impl/trace_renderer_base.cc +++ b/modules/gfx/src/impl/trace_renderer_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/trace_renderer_base.hh b/modules/gfx/src/impl/trace_renderer_base.hh index bb8ef0515..7f07cd685 100644 --- a/modules/gfx/src/impl/trace_renderer_base.hh +++ b/modules/gfx/src/impl/trace_renderer_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/wgl_offscreen_buffer.cc b/modules/gfx/src/impl/wgl_offscreen_buffer.cc index 614a19567..f9420de62 100644 --- a/modules/gfx/src/impl/wgl_offscreen_buffer.cc +++ b/modules/gfx/src/impl/wgl_offscreen_buffer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/impl/wgl_offscreen_buffer.hh b/modules/gfx/src/impl/wgl_offscreen_buffer.hh index df4cfaab4..7874e838a 100644 --- a/modules/gfx/src/impl/wgl_offscreen_buffer.hh +++ b/modules/gfx/src/impl/wgl_offscreen_buffer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/input.cc b/modules/gfx/src/input.cc index 6f48d18a5..5c6773226 100644 --- a/modules/gfx/src/input.cc +++ b/modules/gfx/src/input.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/input.hh b/modules/gfx/src/input.hh index 43c311e34..128358cda 100644 --- a/modules/gfx/src/input.hh +++ b/modules/gfx/src/input.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/map_iso.cc b/modules/gfx/src/map_iso.cc index ce9729c18..0a575b192 100644 --- a/modules/gfx/src/map_iso.cc +++ b/modules/gfx/src/map_iso.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/map_iso.hh b/modules/gfx/src/map_iso.hh index 46923c7c7..0791d40eb 100644 --- a/modules/gfx/src/map_iso.hh +++ b/modules/gfx/src/map_iso.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/map_iso_prop.hh b/modules/gfx/src/map_iso_prop.hh index 34e2707c4..3aa49b707 100644 --- a/modules/gfx/src/map_iso_prop.hh +++ b/modules/gfx/src/map_iso_prop.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/map_slab.cc b/modules/gfx/src/map_slab.cc index 3656eec4d..ae4a08629 100644 --- a/modules/gfx/src/map_slab.cc +++ b/modules/gfx/src/map_slab.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/map_slab.hh b/modules/gfx/src/map_slab.hh index d08ba2da5..8d27b975c 100644 --- a/modules/gfx/src/map_slab.hh +++ b/modules/gfx/src/map_slab.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/material.cc b/modules/gfx/src/material.cc index 3ff55e0d8..b0e039471 100644 --- a/modules/gfx/src/material.cc +++ b/modules/gfx/src/material.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/material.hh b/modules/gfx/src/material.hh index ac7649b89..12e67481a 100644 --- a/modules/gfx/src/material.hh +++ b/modules/gfx/src/material.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/module_config.hh b/modules/gfx/src/module_config.hh index 5e2bb1c4f..0deb63147 100644 --- a/modules/gfx/src/module_config.hh +++ b/modules/gfx/src/module_config.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/offscreen_buffer.cc b/modules/gfx/src/offscreen_buffer.cc index b7b187928..02b619148 100644 --- a/modules/gfx/src/offscreen_buffer.cc +++ b/modules/gfx/src/offscreen_buffer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/offscreen_buffer.hh b/modules/gfx/src/offscreen_buffer.hh index 8270d1579..2714cdbe0 100644 --- a/modules/gfx/src/offscreen_buffer.hh +++ b/modules/gfx/src/offscreen_buffer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/povray.cc b/modules/gfx/src/povray.cc index 832ae827d..f630974d7 100644 --- a/modules/gfx/src/povray.cc +++ b/modules/gfx/src/povray.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/povray.hh b/modules/gfx/src/povray.hh index 307ebd0a3..b647420a1 100644 --- a/modules/gfx/src/povray.hh +++ b/modules/gfx/src/povray.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/povray_fw.hh b/modules/gfx/src/povray_fw.hh index e187ba9d3..a2c0c58a6 100644 --- a/modules/gfx/src/povray_fw.hh +++ b/modules/gfx/src/povray_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/prim_list.cc b/modules/gfx/src/prim_list.cc index e92c1477c..0d1b288fb 100644 --- a/modules/gfx/src/prim_list.cc +++ b/modules/gfx/src/prim_list.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/prim_list.hh b/modules/gfx/src/prim_list.hh index b4aa65b98..daba0e7e5 100644 --- a/modules/gfx/src/prim_list.hh +++ b/modules/gfx/src/prim_list.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/primitives.cc b/modules/gfx/src/primitives.cc index 5c0d0650e..46552aa58 100644 --- a/modules/gfx/src/primitives.cc +++ b/modules/gfx/src/primitives.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/primitives.hh b/modules/gfx/src/primitives.hh index c37e50ce1..04ce67de9 100644 --- a/modules/gfx/src/primitives.hh +++ b/modules/gfx/src/primitives.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_mode.hh b/modules/gfx/src/render_mode.hh index 2f4bd4bd2..06c275632 100644 --- a/modules/gfx/src/render_mode.hh +++ b/modules/gfx/src/render_mode.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/cartoon_render_options.cc b/modules/gfx/src/render_options/cartoon_render_options.cc index e4ed3db3c..55cc659f4 100644 --- a/modules/gfx/src/render_options/cartoon_render_options.cc +++ b/modules/gfx/src/render_options/cartoon_render_options.cc @@ -2,7 +2,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/cartoon_render_options.hh b/modules/gfx/src/render_options/cartoon_render_options.hh index 8cb855567..b4bf7f90c 100644 --- a/modules/gfx/src/render_options/cartoon_render_options.hh +++ b/modules/gfx/src/render_options/cartoon_render_options.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/cpk_render_options.cc b/modules/gfx/src/render_options/cpk_render_options.cc index 1413e582f..add931551 100644 --- a/modules/gfx/src/render_options/cpk_render_options.cc +++ b/modules/gfx/src/render_options/cpk_render_options.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/cpk_render_options.hh b/modules/gfx/src/render_options/cpk_render_options.hh index 64da85228..98845a536 100644 --- a/modules/gfx/src/render_options/cpk_render_options.hh +++ b/modules/gfx/src/render_options/cpk_render_options.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/custom_render_options.cc b/modules/gfx/src/render_options/custom_render_options.cc index bfce28e3f..1712c0243 100644 --- a/modules/gfx/src/render_options/custom_render_options.cc +++ b/modules/gfx/src/render_options/custom_render_options.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/custom_render_options.hh b/modules/gfx/src/render_options/custom_render_options.hh index 35ef6d520..dfd7ddd4c 100644 --- a/modules/gfx/src/render_options/custom_render_options.hh +++ b/modules/gfx/src/render_options/custom_render_options.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/line_render_options.cc b/modules/gfx/src/render_options/line_render_options.cc index 5239243b9..fbc42af37 100644 --- a/modules/gfx/src/render_options/line_render_options.cc +++ b/modules/gfx/src/render_options/line_render_options.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/line_render_options.hh b/modules/gfx/src/render_options/line_render_options.hh index c96759596..ea6865040 100644 --- a/modules/gfx/src/render_options/line_render_options.hh +++ b/modules/gfx/src/render_options/line_render_options.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/line_trace_render_options.cc b/modules/gfx/src/render_options/line_trace_render_options.cc index afff2bf79..2029ab482 100644 --- a/modules/gfx/src/render_options/line_trace_render_options.cc +++ b/modules/gfx/src/render_options/line_trace_render_options.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/line_trace_render_options.hh b/modules/gfx/src/render_options/line_trace_render_options.hh index 114f4888b..96e1532bc 100644 --- a/modules/gfx/src/render_options/line_trace_render_options.hh +++ b/modules/gfx/src/render_options/line_trace_render_options.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/render_options.cc b/modules/gfx/src/render_options/render_options.cc index b7898657e..0c5597b33 100644 --- a/modules/gfx/src/render_options/render_options.cc +++ b/modules/gfx/src/render_options/render_options.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/render_options.hh b/modules/gfx/src/render_options/render_options.hh index 419528da9..0c2515bdb 100644 --- a/modules/gfx/src/render_options/render_options.hh +++ b/modules/gfx/src/render_options/render_options.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/simple_render_options.cc b/modules/gfx/src/render_options/simple_render_options.cc index c15efb06d..72ad4e829 100644 --- a/modules/gfx/src/render_options/simple_render_options.cc +++ b/modules/gfx/src/render_options/simple_render_options.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/simple_render_options.hh b/modules/gfx/src/render_options/simple_render_options.hh index 1eb284726..1817ea62a 100644 --- a/modules/gfx/src/render_options/simple_render_options.hh +++ b/modules/gfx/src/render_options/simple_render_options.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/sline_render_options.cc b/modules/gfx/src/render_options/sline_render_options.cc index 83fd53c1d..a3c663838 100644 --- a/modules/gfx/src/render_options/sline_render_options.cc +++ b/modules/gfx/src/render_options/sline_render_options.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/sline_render_options.hh b/modules/gfx/src/render_options/sline_render_options.hh index 386f7569a..fcd336de1 100644 --- a/modules/gfx/src/render_options/sline_render_options.hh +++ b/modules/gfx/src/render_options/sline_render_options.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/trace_render_options.cc b/modules/gfx/src/render_options/trace_render_options.cc index fb2afc3cc..e5e9c0263 100644 --- a/modules/gfx/src/render_options/trace_render_options.cc +++ b/modules/gfx/src/render_options/trace_render_options.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_options/trace_render_options.hh b/modules/gfx/src/render_options/trace_render_options.hh index e9943e4dd..e8817ed3e 100644 --- a/modules/gfx/src/render_options/trace_render_options.hh +++ b/modules/gfx/src/render_options/trace_render_options.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/render_pass.hh b/modules/gfx/src/render_pass.hh index 2105b9bb5..badbebe30 100644 --- a/modules/gfx/src/render_pass.hh +++ b/modules/gfx/src/render_pass.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/scene.cc b/modules/gfx/src/scene.cc index 337077ee7..146fb41da 100644 --- a/modules/gfx/src/scene.cc +++ b/modules/gfx/src/scene.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/scene.hh b/modules/gfx/src/scene.hh index 34e2e033a..bad00b954 100644 --- a/modules/gfx/src/scene.hh +++ b/modules/gfx/src/scene.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/scene_observer.hh b/modules/gfx/src/scene_observer.hh index 5eabb3549..6e9eea0fc 100644 --- a/modules/gfx/src/scene_observer.hh +++ b/modules/gfx/src/scene_observer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/selection.cc b/modules/gfx/src/selection.cc index a74376b0a..ab0d2c6b5 100644 --- a/modules/gfx/src/selection.cc +++ b/modules/gfx/src/selection.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/selection.hh b/modules/gfx/src/selection.hh index fb0b3aab9..41d0b02d9 100644 --- a/modules/gfx/src/selection.hh +++ b/modules/gfx/src/selection.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/shader.cc b/modules/gfx/src/shader.cc index 0a14cf59b..4084e9bbd 100644 --- a/modules/gfx/src/shader.cc +++ b/modules/gfx/src/shader.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/shader.hh b/modules/gfx/src/shader.hh index ecd457beb..cd6e5a8bf 100644 --- a/modules/gfx/src/shader.hh +++ b/modules/gfx/src/shader.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/surface.cc b/modules/gfx/src/surface.cc index 1f4b79161..6063f242c 100644 --- a/modules/gfx/src/surface.cc +++ b/modules/gfx/src/surface.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/surface.hh b/modules/gfx/src/surface.hh index c8fc12834..b3bea4b53 100644 --- a/modules/gfx/src/surface.hh +++ b/modules/gfx/src/surface.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/symmetry_node.cc b/modules/gfx/src/symmetry_node.cc index a58fdc6d0..266f008d6 100644 --- a/modules/gfx/src/symmetry_node.cc +++ b/modules/gfx/src/symmetry_node.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/symmetry_node.hh b/modules/gfx/src/symmetry_node.hh index c4d565027..7298a19e8 100644 --- a/modules/gfx/src/symmetry_node.hh +++ b/modules/gfx/src/symmetry_node.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/texture.hh b/modules/gfx/src/texture.hh index 471bdfd71..b3a53dd27 100644 --- a/modules/gfx/src/texture.hh +++ b/modules/gfx/src/texture.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/vertex_array.cc b/modules/gfx/src/vertex_array.cc index da22a3272..4e42c234b 100644 --- a/modules/gfx/src/vertex_array.cc +++ b/modules/gfx/src/vertex_array.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/vertex_array.hh b/modules/gfx/src/vertex_array.hh index 240251948..b7dcce4cd 100644 --- a/modules/gfx/src/vertex_array.hh +++ b/modules/gfx/src/vertex_array.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/vertex_array_helper.cc b/modules/gfx/src/vertex_array_helper.cc index 489683846..4354996e8 100644 --- a/modules/gfx/src/vertex_array_helper.cc +++ b/modules/gfx/src/vertex_array_helper.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/src/vertex_array_helper.hh b/modules/gfx/src/vertex_array_helper.hh index 76a6ffed4..f810c511c 100644 --- a/modules/gfx/src/vertex_array_helper.hh +++ b/modules/gfx/src/vertex_array_helper.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/tests/test_ent_pov_export.cc b/modules/gfx/tests/test_ent_pov_export.cc index 2d1717eac..b5c409f96 100644 --- a/modules/gfx/tests/test_ent_pov_export.cc +++ b/modules/gfx/tests/test_ent_pov_export.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/tests/test_gfx_node.cc b/modules/gfx/tests/test_gfx_node.cc index 8959d3c89..c32994e10 100644 --- a/modules/gfx/tests/test_gfx_node.cc +++ b/modules/gfx/tests/test_gfx_node.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/tests/test_map_octree.cc b/modules/gfx/tests/test_map_octree.cc index 31dd637f7..41bfba860 100644 --- a/modules/gfx/tests/test_map_octree.cc +++ b/modules/gfx/tests/test_map_octree.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gfx/tests/tests.cc b/modules/gfx/tests/tests.cc index d30baeaf6..bb712952e 100644 --- a/modules/gfx/tests/tests.cc +++ b/modules/gfx/tests/tests.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/__init__.py b/modules/gui/pymod/__init__.py index e8571e14d..ebacf39c9 100644 --- a/modules/gui/pymod/__init__.py +++ b/modules/gui/pymod/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/export_alignment_view.cc b/modules/gui/pymod/export_alignment_view.cc index 9fe078635..1d6e22bfd 100644 --- a/modules/gui/pymod/export_alignment_view.cc +++ b/modules/gui/pymod/export_alignment_view.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_data_viewer.cc b/modules/gui/pymod/export_data_viewer.cc index 2dc74e40f..993f272a8 100644 --- a/modules/gui/pymod/export_data_viewer.cc +++ b/modules/gui/pymod/export_data_viewer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/pymod/export_file_loader.cc b/modules/gui/pymod/export_file_loader.cc index 9853d5bc7..ab978f09a 100644 --- a/modules/gui/pymod/export_file_loader.cc +++ b/modules/gui/pymod/export_file_loader.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_file_viewer.cc b/modules/gui/pymod/export_file_viewer.cc index 57dd38112..66b704d84 100644 --- a/modules/gui/pymod/export_file_viewer.cc +++ b/modules/gui/pymod/export_file_viewer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_gl_win.cc b/modules/gui/pymod/export_gl_win.cc index d42165b00..044cf417a 100644 --- a/modules/gui/pymod/export_gl_win.cc +++ b/modules/gui/pymod/export_gl_win.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_gosty.cc b/modules/gui/pymod/export_gosty.cc index 5a9ee652d..1cd37fae4 100644 --- a/modules/gui/pymod/export_gosty.cc +++ b/modules/gui/pymod/export_gosty.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_input.cc b/modules/gui/pymod/export_input.cc index b5ecfb156..fcda612aa 100644 --- a/modules/gui/pymod/export_input.cc +++ b/modules/gui/pymod/export_input.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_main_area.cc b/modules/gui/pymod/export_main_area.cc index 4e6b793b5..bc3adaa08 100644 --- a/modules/gui/pymod/export_main_area.cc +++ b/modules/gui/pymod/export_main_area.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_menu_bar.cc b/modules/gui/pymod/export_menu_bar.cc index 146e0785c..35220c966 100644 --- a/modules/gui/pymod/export_menu_bar.cc +++ b/modules/gui/pymod/export_menu_bar.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_message_widget.cc b/modules/gui/pymod/export_message_widget.cc index 0a9c2d7dc..1893c7e87 100644 --- a/modules/gui/pymod/export_message_widget.cc +++ b/modules/gui/pymod/export_message_widget.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_overlay.cc b/modules/gui/pymod/export_overlay.cc index 03131dfcc..4b95814e2 100644 --- a/modules/gui/pymod/export_overlay.cc +++ b/modules/gui/pymod/export_overlay.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/pymod/export_panels.cc b/modules/gui/pymod/export_panels.cc index 580f82c5f..71920ef1a 100644 --- a/modules/gui/pymod/export_panels.cc +++ b/modules/gui/pymod/export_panels.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_perspective.cc b/modules/gui/pymod/export_perspective.cc index 17d522f5e..5c24dd607 100644 --- a/modules/gui/pymod/export_perspective.cc +++ b/modules/gui/pymod/export_perspective.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_plot.cc b/modules/gui/pymod/export_plot.cc index b233efeb1..9091a7313 100644 --- a/modules/gui/pymod/export_plot.cc +++ b/modules/gui/pymod/export_plot.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/pymod/export_py_shell.cc b/modules/gui/pymod/export_py_shell.cc index fc2785a91..84dfbe16d 100644 --- a/modules/gui/pymod/export_py_shell.cc +++ b/modules/gui/pymod/export_py_shell.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_remote_site_loader.cc b/modules/gui/pymod/export_remote_site_loader.cc index d864b87e4..80ad57049 100644 --- a/modules/gui/pymod/export_remote_site_loader.cc +++ b/modules/gui/pymod/export_remote_site_loader.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_scene_selection.cc b/modules/gui/pymod/export_scene_selection.cc index 03d957202..28a283fe7 100644 --- a/modules/gui/pymod/export_scene_selection.cc +++ b/modules/gui/pymod/export_scene_selection.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_scene_win.cc b/modules/gui/pymod/export_scene_win.cc index 6db3578c7..b814c257e 100644 --- a/modules/gui/pymod/export_scene_win.cc +++ b/modules/gui/pymod/export_scene_win.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_sequence_viewer.cc b/modules/gui/pymod/export_sequence_viewer.cc index 20b56cf44..caecdc4d6 100644 --- a/modules/gui/pymod/export_sequence_viewer.cc +++ b/modules/gui/pymod/export_sequence_viewer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_sip_handler.cc b/modules/gui/pymod/export_sip_handler.cc index 5247c8882..6606e7875 100644 --- a/modules/gui/pymod/export_sip_handler.cc +++ b/modules/gui/pymod/export_sip_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_tool.cc b/modules/gui/pymod/export_tool.cc index 11ee78b91..fbcf9375b 100644 --- a/modules/gui/pymod/export_tool.cc +++ b/modules/gui/pymod/export_tool.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/export_widget.cc b/modules/gui/pymod/export_widget.cc index f548e52ff..fe6bd46fb 100644 --- a/modules/gui/pymod/export_widget.cc +++ b/modules/gui/pymod/export_widget.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/init_menubar.py b/modules/gui/pymod/init_menubar.py index e0c05c620..cc8dd3b61 100644 --- a/modules/gui/pymod/init_menubar.py +++ b/modules/gui/pymod/init_menubar.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/qptr.hh b/modules/gui/pymod/qptr.hh index 979cc4ff2..24d53b8e5 100644 --- a/modules/gui/pymod/qptr.hh +++ b/modules/gui/pymod/qptr.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/scene/__init__.py b/modules/gui/pymod/scene/__init__.py index af66d8776..4d1c51119 100644 --- a/modules/gui/pymod/scene/__init__.py +++ b/modules/gui/pymod/scene/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/color_options_widget.py b/modules/gui/pymod/scene/color_options_widget.py index 4171e8c40..4bb7012c5 100644 --- a/modules/gui/pymod/scene/color_options_widget.py +++ b/modules/gui/pymod/scene/color_options_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/color_select_widget.py b/modules/gui/pymod/scene/color_select_widget.py index 2fdf19bb1..160842a54 100644 --- a/modules/gui/pymod/scene/color_select_widget.py +++ b/modules/gui/pymod/scene/color_select_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/combo_options_widget.py b/modules/gui/pymod/scene/combo_options_widget.py index b84630cc1..1dff39c62 100644 --- a/modules/gui/pymod/scene/combo_options_widget.py +++ b/modules/gui/pymod/scene/combo_options_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/cpk_widget.py b/modules/gui/pymod/scene/cpk_widget.py index 9a15dce91..038476597 100644 --- a/modules/gui/pymod/scene/cpk_widget.py +++ b/modules/gui/pymod/scene/cpk_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/custom_widget.py b/modules/gui/pymod/scene/custom_widget.py index a778ed436..91b232de3 100644 --- a/modules/gui/pymod/scene/custom_widget.py +++ b/modules/gui/pymod/scene/custom_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/file_loader.py b/modules/gui/pymod/scene/file_loader.py index 98319a436..90520d672 100644 --- a/modules/gui/pymod/scene/file_loader.py +++ b/modules/gui/pymod/scene/file_loader.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/gradient_editor_widget.py b/modules/gui/pymod/scene/gradient_editor_widget.py index 60be773b1..d4d188248 100644 --- a/modules/gui/pymod/scene/gradient_editor_widget.py +++ b/modules/gui/pymod/scene/gradient_editor_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/gradient_info_handler.py b/modules/gui/pymod/scene/gradient_info_handler.py index 3a5a44f2d..951dcd668 100644 --- a/modules/gui/pymod/scene/gradient_info_handler.py +++ b/modules/gui/pymod/scene/gradient_info_handler.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/gradient_preset_widget.py b/modules/gui/pymod/scene/gradient_preset_widget.py index 99beffeb9..ebbfc942f 100644 --- a/modules/gui/pymod/scene/gradient_preset_widget.py +++ b/modules/gui/pymod/scene/gradient_preset_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/hsc_widget.py b/modules/gui/pymod/scene/hsc_widget.py index f5ca1ad00..cb8e25777 100644 --- a/modules/gui/pymod/scene/hsc_widget.py +++ b/modules/gui/pymod/scene/hsc_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/immutable_gradient_info_handler.py b/modules/gui/pymod/scene/immutable_gradient_info_handler.py index e1fbb49c3..9998820b6 100644 --- a/modules/gui/pymod/scene/immutable_gradient_info_handler.py +++ b/modules/gui/pymod/scene/immutable_gradient_info_handler.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/immutable_info_handler.py b/modules/gui/pymod/scene/immutable_info_handler.py index cbebc4586..b85a11039 100644 --- a/modules/gui/pymod/scene/immutable_info_handler.py +++ b/modules/gui/pymod/scene/immutable_info_handler.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/immutable_loader_info_handler.py b/modules/gui/pymod/scene/immutable_loader_info_handler.py index fc2198607..402ef85c9 100644 --- a/modules/gui/pymod/scene/immutable_loader_info_handler.py +++ b/modules/gui/pymod/scene/immutable_loader_info_handler.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/immutable_preset_info_handler.py b/modules/gui/pymod/scene/immutable_preset_info_handler.py index 131b0e1bc..5b1fb7c12 100644 --- a/modules/gui/pymod/scene/immutable_preset_info_handler.py +++ b/modules/gui/pymod/scene/immutable_preset_info_handler.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/init_inspector.py b/modules/gui/pymod/scene/init_inspector.py index 5bd17ba3d..72b35454d 100644 --- a/modules/gui/pymod/scene/init_inspector.py +++ b/modules/gui/pymod/scene/init_inspector.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/inspector_widget.py b/modules/gui/pymod/scene/inspector_widget.py index d5f29f05a..0d55de190 100644 --- a/modules/gui/pymod/scene/inspector_widget.py +++ b/modules/gui/pymod/scene/inspector_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/line_trace_widget.py b/modules/gui/pymod/scene/line_trace_widget.py index fc8510346..5b1133e72 100644 --- a/modules/gui/pymod/scene/line_trace_widget.py +++ b/modules/gui/pymod/scene/line_trace_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/loader_info_handler.py b/modules/gui/pymod/scene/loader_info_handler.py index 5ff535814..079620ecc 100644 --- a/modules/gui/pymod/scene/loader_info_handler.py +++ b/modules/gui/pymod/scene/loader_info_handler.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/loader_manager_widget.py b/modules/gui/pymod/scene/loader_manager_widget.py index 8ab83cc1e..d1fd7795d 100644 --- a/modules/gui/pymod/scene/loader_manager_widget.py +++ b/modules/gui/pymod/scene/loader_manager_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/map_level_widget.py b/modules/gui/pymod/scene/map_level_widget.py index 8ef01e08c..02851b761 100644 --- a/modules/gui/pymod/scene/map_level_widget.py +++ b/modules/gui/pymod/scene/map_level_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/preset.py b/modules/gui/pymod/scene/preset.py index 2b4f41ba0..4628f8248 100644 --- a/modules/gui/pymod/scene/preset.py +++ b/modules/gui/pymod/scene/preset.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/preset_editor_widget.py b/modules/gui/pymod/scene/preset_editor_widget.py index 457cda457..d5348e918 100644 --- a/modules/gui/pymod/scene/preset_editor_widget.py +++ b/modules/gui/pymod/scene/preset_editor_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/preset_info_handler.py b/modules/gui/pymod/scene/preset_info_handler.py index fd49f5c89..ba77aaff8 100644 --- a/modules/gui/pymod/scene/preset_info_handler.py +++ b/modules/gui/pymod/scene/preset_info_handler.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/preset_widget.py b/modules/gui/pymod/scene/preset_widget.py index dc97b10f7..87e8ea7cc 100644 --- a/modules/gui/pymod/scene/preset_widget.py +++ b/modules/gui/pymod/scene/preset_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/render_mode_widget.py b/modules/gui/pymod/scene/render_mode_widget.py index 17f099223..038e0950e 100644 --- a/modules/gui/pymod/scene/render_mode_widget.py +++ b/modules/gui/pymod/scene/render_mode_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/render_op.py b/modules/gui/pymod/scene/render_op.py index f161eff2f..cdbb7e036 100644 --- a/modules/gui/pymod/scene/render_op.py +++ b/modules/gui/pymod/scene/render_op.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/render_options_widget.py b/modules/gui/pymod/scene/render_options_widget.py index cc22f3cc1..124c32c66 100644 --- a/modules/gui/pymod/scene/render_options_widget.py +++ b/modules/gui/pymod/scene/render_options_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/scene_observer_impl.py b/modules/gui/pymod/scene/scene_observer_impl.py index 112847a67..b4a0096fa 100644 --- a/modules/gui/pymod/scene/scene_observer_impl.py +++ b/modules/gui/pymod/scene/scene_observer_impl.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/scene_selection_helper.py b/modules/gui/pymod/scene/scene_selection_helper.py index 96d9cc9ff..80d35b9b4 100644 --- a/modules/gui/pymod/scene/scene_selection_helper.py +++ b/modules/gui/pymod/scene/scene_selection_helper.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/simple_widget.py b/modules/gui/pymod/scene/simple_widget.py index f757f8877..1c9c337e9 100644 --- a/modules/gui/pymod/scene/simple_widget.py +++ b/modules/gui/pymod/scene/simple_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/sline_widget.py b/modules/gui/pymod/scene/sline_widget.py index 6b45cb76c..063a81e33 100644 --- a/modules/gui/pymod/scene/sline_widget.py +++ b/modules/gui/pymod/scene/sline_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/toolbar_options_widget.py b/modules/gui/pymod/scene/toolbar_options_widget.py index d331b62b4..bedaf8482 100644 --- a/modules/gui/pymod/scene/toolbar_options_widget.py +++ b/modules/gui/pymod/scene/toolbar_options_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/trace_widget.py b/modules/gui/pymod/scene/trace_widget.py index a67649071..a55a0dc55 100644 --- a/modules/gui/pymod/scene/trace_widget.py +++ b/modules/gui/pymod/scene/trace_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/tube_widget.py b/modules/gui/pymod/scene/tube_widget.py index e2148ac67..e1fa92c67 100644 --- a/modules/gui/pymod/scene/tube_widget.py +++ b/modules/gui/pymod/scene/tube_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/uniform_color_widget.py b/modules/gui/pymod/scene/uniform_color_widget.py index b5c074c9c..d214bbee8 100644 --- a/modules/gui/pymod/scene/uniform_color_widget.py +++ b/modules/gui/pymod/scene/uniform_color_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/visibility_op.py b/modules/gui/pymod/scene/visibility_op.py index 6a377b5fc..9e7402dc1 100644 --- a/modules/gui/pymod/scene/visibility_op.py +++ b/modules/gui/pymod/scene/visibility_op.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/scene/wireframe_widget.py b/modules/gui/pymod/scene/wireframe_widget.py index 997003743..35175222a 100644 --- a/modules/gui/pymod/scene/wireframe_widget.py +++ b/modules/gui/pymod/scene/wireframe_widget.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/sip_handler.hh b/modules/gui/pymod/sip_handler.hh index f9002d4ff..bdc43461f 100644 --- a/modules/gui/pymod/sip_handler.hh +++ b/modules/gui/pymod/sip_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/pymod/traj.py b/modules/gui/pymod/traj.py index 759967215..6df252b35 100644 --- a/modules/gui/pymod/traj.py +++ b/modules/gui/pymod/traj.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------- # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/gui/pymod/wrap_gui.cc b/modules/gui/pymod/wrap_gui.cc index 09f24fe82..19dc01702 100644 --- a/modules/gui/pymod/wrap_gui.cc +++ b/modules/gui/pymod/wrap_gui.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/admin.cc b/modules/gui/src/admin.cc index 4163750a4..d82e384bd 100644 --- a/modules/gui/src/admin.cc +++ b/modules/gui/src/admin.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/admin.hh b/modules/gui/src/admin.hh index 99e43e860..cfaa482be 100644 --- a/modules/gui/src/admin.hh +++ b/modules/gui/src/admin.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/data_viewer/argand.cc b/modules/gui/src/data_viewer/argand.cc index e9d65dee8..6fceabe8f 100644 --- a/modules/gui/src/data_viewer/argand.cc +++ b/modules/gui/src/data_viewer/argand.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/argand.hh b/modules/gui/src/data_viewer/argand.hh index 346cee3b0..492bce04f 100644 --- a/modules/gui/src/data_viewer/argand.hh +++ b/modules/gui/src/data_viewer/argand.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/data_viewer.cc b/modules/gui/src/data_viewer/data_viewer.cc index d97048438..a9d9d6a57 100644 --- a/modules/gui/src/data_viewer/data_viewer.cc +++ b/modules/gui/src/data_viewer/data_viewer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/data_viewer.hh b/modules/gui/src/data_viewer/data_viewer.hh index be4d576a6..859a8d8b0 100644 --- a/modules/gui/src/data_viewer/data_viewer.hh +++ b/modules/gui/src/data_viewer/data_viewer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/data_viewer_panel.cc b/modules/gui/src/data_viewer/data_viewer_panel.cc index b3fd252dd..06a58bb1e 100644 --- a/modules/gui/src/data_viewer/data_viewer_panel.cc +++ b/modules/gui/src/data_viewer/data_viewer_panel.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/data_viewer_panel.hh b/modules/gui/src/data_viewer/data_viewer_panel.hh index 3d3e6e960..e72530e36 100644 --- a/modules/gui/src/data_viewer/data_viewer_panel.hh +++ b/modules/gui/src/data_viewer/data_viewer_panel.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/data_viewer_panel_base.cc b/modules/gui/src/data_viewer/data_viewer_panel_base.cc index 7a098921d..622fd7ff9 100644 --- a/modules/gui/src/data_viewer/data_viewer_panel_base.cc +++ b/modules/gui/src/data_viewer/data_viewer_panel_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/data_viewer_panel_base.hh b/modules/gui/src/data_viewer/data_viewer_panel_base.hh index 16339e55f..db836a82c 100644 --- a/modules/gui/src/data_viewer/data_viewer_panel_base.hh +++ b/modules/gui/src/data_viewer/data_viewer_panel_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/draw_overlay.cc b/modules/gui/src/data_viewer/draw_overlay.cc index 088010304..86c05bb07 100644 --- a/modules/gui/src/data_viewer/draw_overlay.cc +++ b/modules/gui/src/data_viewer/draw_overlay.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/draw_overlay.hh b/modules/gui/src/data_viewer/draw_overlay.hh index efdbc1a58..8ec433c4d 100644 --- a/modules/gui/src/data_viewer/draw_overlay.hh +++ b/modules/gui/src/data_viewer/draw_overlay.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/drawing_functions.cc b/modules/gui/src/data_viewer/drawing_functions.cc index 221809596..f27b3eb0d 100644 --- a/modules/gui/src/data_viewer/drawing_functions.cc +++ b/modules/gui/src/data_viewer/drawing_functions.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/drawing_functions.hh b/modules/gui/src/data_viewer/drawing_functions.hh index b3374a12d..0d94bd69b 100644 --- a/modules/gui/src/data_viewer/drawing_functions.hh +++ b/modules/gui/src/data_viewer/drawing_functions.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/fft_panel.cc b/modules/gui/src/data_viewer/fft_panel.cc index 6b14752a0..b4d042abd 100644 --- a/modules/gui/src/data_viewer/fft_panel.cc +++ b/modules/gui/src/data_viewer/fft_panel.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/fft_panel.hh b/modules/gui/src/data_viewer/fft_panel.hh index e1020caa6..fab31b6ac 100644 --- a/modules/gui/src/data_viewer/fft_panel.hh +++ b/modules/gui/src/data_viewer/fft_panel.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/img2qt.cc b/modules/gui/src/data_viewer/img2qt.cc index 9d0defcc4..2194c6030 100644 --- a/modules/gui/src/data_viewer/img2qt.cc +++ b/modules/gui/src/data_viewer/img2qt.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/img2qt.hh b/modules/gui/src/data_viewer/img2qt.hh index 6c6d2b9ce..3088a2f3e 100644 --- a/modules/gui/src/data_viewer/img2qt.hh +++ b/modules/gui/src/data_viewer/img2qt.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/info_panel.cc b/modules/gui/src/data_viewer/info_panel.cc index 4ebd0b53e..34f1790aa 100644 --- a/modules/gui/src/data_viewer/info_panel.cc +++ b/modules/gui/src/data_viewer/info_panel.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/info_panel.hh b/modules/gui/src/data_viewer/info_panel.hh index d22955506..69f125d61 100644 --- a/modules/gui/src/data_viewer/info_panel.hh +++ b/modules/gui/src/data_viewer/info_panel.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/mask_overlay.cc b/modules/gui/src/data_viewer/mask_overlay.cc index b53678ad1..418e01508 100644 --- a/modules/gui/src/data_viewer/mask_overlay.cc +++ b/modules/gui/src/data_viewer/mask_overlay.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/mask_overlay.hh b/modules/gui/src/data_viewer/mask_overlay.hh index 36feb893d..a6ee6bc2b 100644 --- a/modules/gui/src/data_viewer/mask_overlay.hh +++ b/modules/gui/src/data_viewer/mask_overlay.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/null_overlay.cc b/modules/gui/src/data_viewer/null_overlay.cc index f7eae6fd7..1fa56b5e6 100644 --- a/modules/gui/src/data_viewer/null_overlay.cc +++ b/modules/gui/src/data_viewer/null_overlay.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/null_overlay.hh b/modules/gui/src/data_viewer/null_overlay.hh index 3e4128b03..59cbce5b9 100644 --- a/modules/gui/src/data_viewer/null_overlay.hh +++ b/modules/gui/src/data_viewer/null_overlay.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/overlay.hh b/modules/gui/src/data_viewer/overlay.hh index 76486b8fe..96d440a27 100644 --- a/modules/gui/src/data_viewer/overlay.hh +++ b/modules/gui/src/data_viewer/overlay.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/overlay_base.cc b/modules/gui/src/data_viewer/overlay_base.cc index 2272e4b0f..c1505e2d9 100644 --- a/modules/gui/src/data_viewer/overlay_base.cc +++ b/modules/gui/src/data_viewer/overlay_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/overlay_base.hh b/modules/gui/src/data_viewer/overlay_base.hh index 05c3d6d08..b64475e6c 100644 --- a/modules/gui/src/data_viewer/overlay_base.hh +++ b/modules/gui/src/data_viewer/overlay_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/overlay_base_fw.hh b/modules/gui/src/data_viewer/overlay_base_fw.hh index e568434a2..7a38205b8 100644 --- a/modules/gui/src/data_viewer/overlay_base_fw.hh +++ b/modules/gui/src/data_viewer/overlay_base_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/overlay_manager.cc b/modules/gui/src/data_viewer/overlay_manager.cc index 11cc0c7cc..a9bc95028 100644 --- a/modules/gui/src/data_viewer/overlay_manager.cc +++ b/modules/gui/src/data_viewer/overlay_manager.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/overlay_manager.hh b/modules/gui/src/data_viewer/overlay_manager.hh index cef91ac91..d1e973609 100644 --- a/modules/gui/src/data_viewer/overlay_manager.hh +++ b/modules/gui/src/data_viewer/overlay_manager.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/overlay_manager_fw.hh b/modules/gui/src/data_viewer/overlay_manager_fw.hh index 4c2e25d14..a80d843da 100644 --- a/modules/gui/src/data_viewer/overlay_manager_fw.hh +++ b/modules/gui/src/data_viewer/overlay_manager_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/overlay_manager_gui.cc b/modules/gui/src/data_viewer/overlay_manager_gui.cc index 1944c42f6..74d24415c 100644 --- a/modules/gui/src/data_viewer/overlay_manager_gui.cc +++ b/modules/gui/src/data_viewer/overlay_manager_gui.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/overlay_manager_gui.hh b/modules/gui/src/data_viewer/overlay_manager_gui.hh index a601832e0..437b0c3b7 100644 --- a/modules/gui/src/data_viewer/overlay_manager_gui.hh +++ b/modules/gui/src/data_viewer/overlay_manager_gui.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/overlay_manager_observer.hh b/modules/gui/src/data_viewer/overlay_manager_observer.hh index 4c2de7267..a4bf9b058 100644 --- a/modules/gui/src/data_viewer/overlay_manager_observer.hh +++ b/modules/gui/src/data_viewer/overlay_manager_observer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/pointlist_overlay.cc b/modules/gui/src/data_viewer/pointlist_overlay.cc index 899372608..84f10563f 100644 --- a/modules/gui/src/data_viewer/pointlist_overlay.cc +++ b/modules/gui/src/data_viewer/pointlist_overlay.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/pointlist_overlay.hh b/modules/gui/src/data_viewer/pointlist_overlay.hh index bbec437c4..9244f4457 100644 --- a/modules/gui/src/data_viewer/pointlist_overlay.hh +++ b/modules/gui/src/data_viewer/pointlist_overlay.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/pointlist_overlay_base.cc b/modules/gui/src/data_viewer/pointlist_overlay_base.cc index 13392d28d..3bf47d6d9 100644 --- a/modules/gui/src/data_viewer/pointlist_overlay_base.cc +++ b/modules/gui/src/data_viewer/pointlist_overlay_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/pointlist_overlay_base.hh b/modules/gui/src/data_viewer/pointlist_overlay_base.hh index 3c0f709d8..43e82562a 100644 --- a/modules/gui/src/data_viewer/pointlist_overlay_base.hh +++ b/modules/gui/src/data_viewer/pointlist_overlay_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/strategies.cc b/modules/gui/src/data_viewer/strategies.cc index c23b593c6..e78a71837 100644 --- a/modules/gui/src/data_viewer/strategies.cc +++ b/modules/gui/src/data_viewer/strategies.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/strategies.hh b/modules/gui/src/data_viewer/strategies.hh index 0989492c8..a37f3f8ef 100644 --- a/modules/gui/src/data_viewer/strategies.hh +++ b/modules/gui/src/data_viewer/strategies.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/strategies_fw.hh b/modules/gui/src/data_viewer/strategies_fw.hh index 78aba1887..5678eb337 100644 --- a/modules/gui/src/data_viewer/strategies_fw.hh +++ b/modules/gui/src/data_viewer/strategies_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/viewer_normalizer.cc b/modules/gui/src/data_viewer/viewer_normalizer.cc index 58eb7e0ea..09a21eaf5 100644 --- a/modules/gui/src/data_viewer/viewer_normalizer.cc +++ b/modules/gui/src/data_viewer/viewer_normalizer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/data_viewer/viewer_normalizer.hh b/modules/gui/src/data_viewer/viewer_normalizer.hh index a185516ff..63b78a188 100644 --- a/modules/gui/src/data_viewer/viewer_normalizer.hh +++ b/modules/gui/src/data_viewer/viewer_normalizer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/dock_widget.cc b/modules/gui/src/dock_widget.cc index 204291c51..9ba553ca5 100644 --- a/modules/gui/src/dock_widget.cc +++ b/modules/gui/src/dock_widget.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/dock_widget.hh b/modules/gui/src/dock_widget.hh index 6668b50aa..4bb5f3c73 100644 --- a/modules/gui/src/dock_widget.hh +++ b/modules/gui/src/dock_widget.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/entity_explorer/entity_explorer.cc b/modules/gui/src/entity_explorer/entity_explorer.cc index f4444ff2e..b05d1765d 100644 --- a/modules/gui/src/entity_explorer/entity_explorer.cc +++ b/modules/gui/src/entity_explorer/entity_explorer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/entity_explorer/entity_explorer.hh b/modules/gui/src/entity_explorer/entity_explorer.hh index 062f05aff..ea5c9f503 100644 --- a/modules/gui/src/entity_explorer/entity_explorer.hh +++ b/modules/gui/src/entity_explorer/entity_explorer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/entity_explorer/entity_explorer_model.cc b/modules/gui/src/entity_explorer/entity_explorer_model.cc index 950d506b3..bfe115c1f 100644 --- a/modules/gui/src/entity_explorer/entity_explorer_model.cc +++ b/modules/gui/src/entity_explorer/entity_explorer_model.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/entity_explorer/entity_explorer_model.hh b/modules/gui/src/entity_explorer/entity_explorer_model.hh index 8071a7c87..23af90cea 100644 --- a/modules/gui/src/entity_explorer/entity_explorer_model.hh +++ b/modules/gui/src/entity_explorer/entity_explorer_model.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/entity_explorer/info_panel.cc b/modules/gui/src/entity_explorer/info_panel.cc index a7499214f..55f7a0160 100644 --- a/modules/gui/src/entity_explorer/info_panel.cc +++ b/modules/gui/src/entity_explorer/info_panel.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/entity_explorer/info_panel.hh b/modules/gui/src/entity_explorer/info_panel.hh index 6fe670e7c..6f687c5b7 100644 --- a/modules/gui/src/entity_explorer/info_panel.hh +++ b/modules/gui/src/entity_explorer/info_panel.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/entity_explorer/menu_item.cc b/modules/gui/src/entity_explorer/menu_item.cc index f85bceb95..09f17e3e9 100644 --- a/modules/gui/src/entity_explorer/menu_item.cc +++ b/modules/gui/src/entity_explorer/menu_item.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/entity_explorer/menu_item.hh b/modules/gui/src/entity_explorer/menu_item.hh index 6cf25e67d..28ac6ebf5 100644 --- a/modules/gui/src/entity_explorer/menu_item.hh +++ b/modules/gui/src/entity_explorer/menu_item.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/file_browser.cc b/modules/gui/src/file_browser.cc index db12c019d..905d7e93a 100644 --- a/modules/gui/src/file_browser.cc +++ b/modules/gui/src/file_browser.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/file_browser.hh b/modules/gui/src/file_browser.hh index 219e5564b..b8d067a9b 100644 --- a/modules/gui/src/file_browser.hh +++ b/modules/gui/src/file_browser.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/file_loader.cc b/modules/gui/src/file_loader.cc index 74b4f240f..ae8e728e8 100644 --- a/modules/gui/src/file_loader.cc +++ b/modules/gui/src/file_loader.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/file_loader.hh b/modules/gui/src/file_loader.hh index c9f7fbc53..32a4ba18e 100644 --- a/modules/gui/src/file_loader.hh +++ b/modules/gui/src/file_loader.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/file_type_dialog.cc b/modules/gui/src/file_type_dialog.cc index d0a45602e..5c1a28923 100644 --- a/modules/gui/src/file_type_dialog.cc +++ b/modules/gui/src/file_type_dialog.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/file_type_dialog.hh b/modules/gui/src/file_type_dialog.hh index b711cbe22..e3babdc42 100644 --- a/modules/gui/src/file_type_dialog.hh +++ b/modules/gui/src/file_type_dialog.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/file_viewer.cc b/modules/gui/src/file_viewer.cc index 4d284702e..1b3ac7a52 100644 --- a/modules/gui/src/file_viewer.cc +++ b/modules/gui/src/file_viewer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/file_viewer.hh b/modules/gui/src/file_viewer.hh index 48f927a5c..a245423f9 100644 --- a/modules/gui/src/file_viewer.hh +++ b/modules/gui/src/file_viewer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/gl_canvas.cc b/modules/gui/src/gl_canvas.cc index d1a7aa9b8..4b677a2cc 100644 --- a/modules/gui/src/gl_canvas.cc +++ b/modules/gui/src/gl_canvas.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/gl_canvas.hh b/modules/gui/src/gl_canvas.hh index db41234df..d33b41151 100644 --- a/modules/gui/src/gl_canvas.hh +++ b/modules/gui/src/gl_canvas.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/gl_win.cc b/modules/gui/src/gl_win.cc index c2f544d7b..f5b8ea561 100644 --- a/modules/gui/src/gl_win.cc +++ b/modules/gui/src/gl_win.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/gl_win.hh b/modules/gui/src/gl_win.hh index eaaf248af..d808d03ff 100644 --- a/modules/gui/src/gl_win.hh +++ b/modules/gui/src/gl_win.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/gosty.cc b/modules/gui/src/gosty.cc index 2f50d596b..19b91bcbe 100644 --- a/modules/gui/src/gosty.cc +++ b/modules/gui/src/gosty.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/gosty.hh b/modules/gui/src/gosty.hh index fe1d881f9..a4c3f25ba 100644 --- a/modules/gui/src/gosty.hh +++ b/modules/gui/src/gosty.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/gosty_app.cc b/modules/gui/src/gosty_app.cc index 342427a11..9c666652b 100644 --- a/modules/gui/src/gosty_app.cc +++ b/modules/gui/src/gosty_app.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/gosty_app.hh b/modules/gui/src/gosty_app.hh index b419fd7da..787404aa3 100644 --- a/modules/gui/src/gosty_app.hh +++ b/modules/gui/src/gosty_app.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/input/spnav_input.cc b/modules/gui/src/input/spnav_input.cc index 61b548191..362cfa3d5 100644 --- a/modules/gui/src/input/spnav_input.cc +++ b/modules/gui/src/input/spnav_input.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/input/spnav_input.hh b/modules/gui/src/input/spnav_input.hh index 557934967..a77734b34 100644 --- a/modules/gui/src/input/spnav_input.hh +++ b/modules/gui/src/input/spnav_input.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/loader_manager.cc b/modules/gui/src/loader_manager.cc index 30a80a7a8..3febfd7ad 100644 --- a/modules/gui/src/loader_manager.cc +++ b/modules/gui/src/loader_manager.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/loader_manager.hh b/modules/gui/src/loader_manager.hh index 12c5c59f2..fb6dfe8e8 100644 --- a/modules/gui/src/loader_manager.hh +++ b/modules/gui/src/loader_manager.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/main.cc b/modules/gui/src/main.cc index ba2dc6f3c..2b43e1371 100644 --- a/modules/gui/src/main.cc +++ b/modules/gui/src/main.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/main.hh b/modules/gui/src/main.hh index 67f204518..57d5a46a1 100644 --- a/modules/gui/src/main.hh +++ b/modules/gui/src/main.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/main_area.cc b/modules/gui/src/main_area.cc index 82ced876c..230c7d776 100644 --- a/modules/gui/src/main_area.cc +++ b/modules/gui/src/main_area.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/main_area.hh b/modules/gui/src/main_area.hh index 535b7465d..9e03d53a0 100644 --- a/modules/gui/src/main_area.hh +++ b/modules/gui/src/main_area.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/main_window.cc b/modules/gui/src/main_window.cc index b0ba97a16..f8f428c43 100644 --- a/modules/gui/src/main_window.cc +++ b/modules/gui/src/main_window.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/main_window.hh b/modules/gui/src/main_window.hh index 4f0796e29..2b273f36d 100644 --- a/modules/gui/src/main_window.hh +++ b/modules/gui/src/main_window.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/messages/log_reader.cc b/modules/gui/src/messages/log_reader.cc index 26f502d83..3562df102 100644 --- a/modules/gui/src/messages/log_reader.cc +++ b/modules/gui/src/messages/log_reader.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/messages/log_reader.hh b/modules/gui/src/messages/log_reader.hh index e64565117..95c8e035e 100644 --- a/modules/gui/src/messages/log_reader.hh +++ b/modules/gui/src/messages/log_reader.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/messages/message_box_widget.cc b/modules/gui/src/messages/message_box_widget.cc index 0f75b337e..2af0d5e01 100644 --- a/modules/gui/src/messages/message_box_widget.cc +++ b/modules/gui/src/messages/message_box_widget.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/messages/message_box_widget.hh b/modules/gui/src/messages/message_box_widget.hh index 5088397d0..60d0e7bb7 100644 --- a/modules/gui/src/messages/message_box_widget.hh +++ b/modules/gui/src/messages/message_box_widget.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/messages/message_widget.cc b/modules/gui/src/messages/message_widget.cc index 001a9635d..983a4ec16 100644 --- a/modules/gui/src/messages/message_widget.cc +++ b/modules/gui/src/messages/message_widget.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/messages/message_widget.hh b/modules/gui/src/messages/message_widget.hh index 5686c2fd3..e9c0d224e 100644 --- a/modules/gui/src/messages/message_widget.hh +++ b/modules/gui/src/messages/message_widget.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/module_config.hh b/modules/gui/src/module_config.hh index f43b86050..a4c324080 100644 --- a/modules/gui/src/module_config.hh +++ b/modules/gui/src/module_config.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/bottom_bar.cc b/modules/gui/src/panels/bottom_bar.cc index f3b643aec..5a19dc358 100644 --- a/modules/gui/src/panels/bottom_bar.cc +++ b/modules/gui/src/panels/bottom_bar.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/bottom_bar.hh b/modules/gui/src/panels/bottom_bar.hh index 908369533..e1927445c 100644 --- a/modules/gui/src/panels/bottom_bar.hh +++ b/modules/gui/src/panels/bottom_bar.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/button_bar.cc b/modules/gui/src/panels/button_bar.cc index 8696ea8a9..72f3eebf9 100644 --- a/modules/gui/src/panels/button_bar.cc +++ b/modules/gui/src/panels/button_bar.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/button_bar.hh b/modules/gui/src/panels/button_bar.hh index ab36d0570..987d66709 100644 --- a/modules/gui/src/panels/button_bar.hh +++ b/modules/gui/src/panels/button_bar.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/button_box.cc b/modules/gui/src/panels/button_box.cc index 30b23700d..318e4f3b4 100644 --- a/modules/gui/src/panels/button_box.cc +++ b/modules/gui/src/panels/button_box.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/button_box.hh b/modules/gui/src/panels/button_box.hh index f6525e609..e65cea90d 100644 --- a/modules/gui/src/panels/button_box.hh +++ b/modules/gui/src/panels/button_box.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/drop_box.cc b/modules/gui/src/panels/drop_box.cc index 149e0a1a4..d81a44cd7 100644 --- a/modules/gui/src/panels/drop_box.cc +++ b/modules/gui/src/panels/drop_box.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/drop_box.hh b/modules/gui/src/panels/drop_box.hh index 9f50f9b14..a474c0608 100644 --- a/modules/gui/src/panels/drop_box.hh +++ b/modules/gui/src/panels/drop_box.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/event_button.cc b/modules/gui/src/panels/event_button.cc index 2892d220d..f541dcc87 100644 --- a/modules/gui/src/panels/event_button.cc +++ b/modules/gui/src/panels/event_button.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/event_button.hh b/modules/gui/src/panels/event_button.hh index 0063e5d11..f3763a1b6 100644 --- a/modules/gui/src/panels/event_button.hh +++ b/modules/gui/src/panels/event_button.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/panel_bar.cc b/modules/gui/src/panels/panel_bar.cc index 291acc925..706c02941 100644 --- a/modules/gui/src/panels/panel_bar.cc +++ b/modules/gui/src/panels/panel_bar.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/panel_bar.hh b/modules/gui/src/panels/panel_bar.hh index ecf930b1c..7c81cbd0b 100644 --- a/modules/gui/src/panels/panel_bar.hh +++ b/modules/gui/src/panels/panel_bar.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/panel_bar_widget_holder.cc b/modules/gui/src/panels/panel_bar_widget_holder.cc index 02fc9d181..a9789cb2a 100644 --- a/modules/gui/src/panels/panel_bar_widget_holder.cc +++ b/modules/gui/src/panels/panel_bar_widget_holder.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/panel_bar_widget_holder.hh b/modules/gui/src/panels/panel_bar_widget_holder.hh index 0b3aca1e8..8aea1cbdc 100644 --- a/modules/gui/src/panels/panel_bar_widget_holder.hh +++ b/modules/gui/src/panels/panel_bar_widget_holder.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/panel_manager.cc b/modules/gui/src/panels/panel_manager.cc index 5a5e3cf6c..0bf0b7f0b 100644 --- a/modules/gui/src/panels/panel_manager.cc +++ b/modules/gui/src/panels/panel_manager.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/panel_manager.hh b/modules/gui/src/panels/panel_manager.hh index d4d505517..e35feb059 100644 --- a/modules/gui/src/panels/panel_manager.hh +++ b/modules/gui/src/panels/panel_manager.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/panel_widget_container.cc b/modules/gui/src/panels/panel_widget_container.cc index 6c6cb8aff..5b1e03313 100644 --- a/modules/gui/src/panels/panel_widget_container.cc +++ b/modules/gui/src/panels/panel_widget_container.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/panel_widget_container.hh b/modules/gui/src/panels/panel_widget_container.hh index e46ae5044..1b05717e2 100644 --- a/modules/gui/src/panels/panel_widget_container.hh +++ b/modules/gui/src/panels/panel_widget_container.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/side_bar.cc b/modules/gui/src/panels/side_bar.cc index 460e8a564..92025d0b0 100644 --- a/modules/gui/src/panels/side_bar.cc +++ b/modules/gui/src/panels/side_bar.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/side_bar.hh b/modules/gui/src/panels/side_bar.hh index 5e6a51b5c..879807a96 100644 --- a/modules/gui/src/panels/side_bar.hh +++ b/modules/gui/src/panels/side_bar.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/splitter_panel_bar.cc b/modules/gui/src/panels/splitter_panel_bar.cc index bfd59c594..dacc1ec21 100644 --- a/modules/gui/src/panels/splitter_panel_bar.cc +++ b/modules/gui/src/panels/splitter_panel_bar.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/splitter_panel_bar.hh b/modules/gui/src/panels/splitter_panel_bar.hh index b283c9cbf..8f20c9b75 100644 --- a/modules/gui/src/panels/splitter_panel_bar.hh +++ b/modules/gui/src/panels/splitter_panel_bar.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/tabbed_panel_bar.cc b/modules/gui/src/panels/tabbed_panel_bar.cc index 2047af69a..aacb5cb3d 100644 --- a/modules/gui/src/panels/tabbed_panel_bar.cc +++ b/modules/gui/src/panels/tabbed_panel_bar.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/panels/tabbed_panel_bar.hh b/modules/gui/src/panels/tabbed_panel_bar.hh index 78fb2ab40..32237a89b 100644 --- a/modules/gui/src/panels/tabbed_panel_bar.hh +++ b/modules/gui/src/panels/tabbed_panel_bar.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/perspective.cc b/modules/gui/src/perspective.cc index bf6745b74..023b9b186 100644 --- a/modules/gui/src/perspective.cc +++ b/modules/gui/src/perspective.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/perspective.hh b/modules/gui/src/perspective.hh index 84a594981..e0ad2c496 100644 --- a/modules/gui/src/perspective.hh +++ b/modules/gui/src/perspective.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/completer_base.cc b/modules/gui/src/python_shell/completer_base.cc index a63d3b0ba..292657027 100644 --- a/modules/gui/src/python_shell/completer_base.cc +++ b/modules/gui/src/python_shell/completer_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/completer_base.hh b/modules/gui/src/python_shell/completer_base.hh index 162f7fa16..8699aab5a 100644 --- a/modules/gui/src/python_shell/completer_base.hh +++ b/modules/gui/src/python_shell/completer_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/dir_model.cc b/modules/gui/src/python_shell/dir_model.cc index e4d2c049b..1add06e69 100644 --- a/modules/gui/src/python_shell/dir_model.cc +++ b/modules/gui/src/python_shell/dir_model.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/dir_model.hh b/modules/gui/src/python_shell/dir_model.hh index 1bf2a48f5..ea882f6b4 100644 --- a/modules/gui/src/python_shell/dir_model.hh +++ b/modules/gui/src/python_shell/dir_model.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/gutter.cc b/modules/gui/src/python_shell/gutter.cc index e60b4c4d6..bb8cb98ee 100644 --- a/modules/gui/src/python_shell/gutter.cc +++ b/modules/gui/src/python_shell/gutter.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/gutter.hh b/modules/gui/src/python_shell/gutter.hh index d08889900..57df03470 100644 --- a/modules/gui/src/python_shell/gutter.hh +++ b/modules/gui/src/python_shell/gutter.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/main_thread_runner.cc b/modules/gui/src/python_shell/main_thread_runner.cc index ea454024c..6b05ca64a 100644 --- a/modules/gui/src/python_shell/main_thread_runner.cc +++ b/modules/gui/src/python_shell/main_thread_runner.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/main_thread_runner.hh b/modules/gui/src/python_shell/main_thread_runner.hh index 399fd8c03..97c818762 100644 --- a/modules/gui/src/python_shell/main_thread_runner.hh +++ b/modules/gui/src/python_shell/main_thread_runner.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/output_redirector.cc b/modules/gui/src/python_shell/output_redirector.cc index e86879a82..39195d850 100644 --- a/modules/gui/src/python_shell/output_redirector.cc +++ b/modules/gui/src/python_shell/output_redirector.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/output_redirector.hh b/modules/gui/src/python_shell/output_redirector.hh index 2d13948a2..99057d7e8 100644 --- a/modules/gui/src/python_shell/output_redirector.hh +++ b/modules/gui/src/python_shell/output_redirector.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/path_completer.cc b/modules/gui/src/python_shell/path_completer.cc index 04aabbb95..922e88d98 100644 --- a/modules/gui/src/python_shell/path_completer.cc +++ b/modules/gui/src/python_shell/path_completer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/path_completer.hh b/modules/gui/src/python_shell/path_completer.hh index 70dcc72f6..fbca0a890 100644 --- a/modules/gui/src/python_shell/path_completer.hh +++ b/modules/gui/src/python_shell/path_completer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_completer.cc b/modules/gui/src/python_shell/python_completer.cc index d03463972..2fe2ba8ca 100644 --- a/modules/gui/src/python_shell/python_completer.cc +++ b/modules/gui/src/python_shell/python_completer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_completer.hh b/modules/gui/src/python_shell/python_completer.hh index 5e3ec7cbe..a2fcedbcc 100644 --- a/modules/gui/src/python_shell/python_completer.hh +++ b/modules/gui/src/python_shell/python_completer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_context_parser.cc b/modules/gui/src/python_shell/python_context_parser.cc index 6155b2fb2..6b5338cea 100644 --- a/modules/gui/src/python_shell/python_context_parser.cc +++ b/modules/gui/src/python_shell/python_context_parser.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_context_parser.hh b/modules/gui/src/python_shell/python_context_parser.hh index faa37ed64..ddc2c93dd 100644 --- a/modules/gui/src/python_shell/python_context_parser.hh +++ b/modules/gui/src/python_shell/python_context_parser.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_interpreter.cc b/modules/gui/src/python_shell/python_interpreter.cc index 07f1e9674..08b745b71 100644 --- a/modules/gui/src/python_shell/python_interpreter.cc +++ b/modules/gui/src/python_shell/python_interpreter.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_interpreter.hh b/modules/gui/src/python_shell/python_interpreter.hh index 940b520cf..5f12d6bbd 100644 --- a/modules/gui/src/python_shell/python_interpreter.hh +++ b/modules/gui/src/python_shell/python_interpreter.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/python_shell/python_interpreter_proxy.cc b/modules/gui/src/python_shell/python_interpreter_proxy.cc index 63353aeab..693273bc2 100644 --- a/modules/gui/src/python_shell/python_interpreter_proxy.cc +++ b/modules/gui/src/python_shell/python_interpreter_proxy.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_interpreter_proxy.hh b/modules/gui/src/python_shell/python_interpreter_proxy.hh index 30ba00be1..4dfd0f3ba 100644 --- a/modules/gui/src/python_shell/python_interpreter_proxy.hh +++ b/modules/gui/src/python_shell/python_interpreter_proxy.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_namespace_tree_item.cc b/modules/gui/src/python_shell/python_namespace_tree_item.cc index 065eeab41..5a5cd4bba 100644 --- a/modules/gui/src/python_shell/python_namespace_tree_item.cc +++ b/modules/gui/src/python_shell/python_namespace_tree_item.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_namespace_tree_item.hh b/modules/gui/src/python_shell/python_namespace_tree_item.hh index 764ec5565..c428b075c 100644 --- a/modules/gui/src/python_shell/python_namespace_tree_item.hh +++ b/modules/gui/src/python_shell/python_namespace_tree_item.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_namespace_tree_model.cc b/modules/gui/src/python_shell/python_namespace_tree_model.cc index 1427a425d..044e32960 100644 --- a/modules/gui/src/python_shell/python_namespace_tree_model.cc +++ b/modules/gui/src/python_shell/python_namespace_tree_model.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_namespace_tree_model.hh b/modules/gui/src/python_shell/python_namespace_tree_model.hh index 295996b48..da21a394f 100644 --- a/modules/gui/src/python_shell/python_namespace_tree_model.hh +++ b/modules/gui/src/python_shell/python_namespace_tree_model.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_shell.cc b/modules/gui/src/python_shell/python_shell.cc index 6cfdc94aa..cdd9c28c3 100644 --- a/modules/gui/src/python_shell/python_shell.cc +++ b/modules/gui/src/python_shell/python_shell.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_shell.hh b/modules/gui/src/python_shell/python_shell.hh index 84f8929ce..11cc3fad0 100644 --- a/modules/gui/src/python_shell/python_shell.hh +++ b/modules/gui/src/python_shell/python_shell.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_shell_fw.hh b/modules/gui/src/python_shell/python_shell_fw.hh index 0d3f1e641..d70eb83d8 100644 --- a/modules/gui/src/python_shell/python_shell_fw.hh +++ b/modules/gui/src/python_shell/python_shell_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_shell_text_document_layout.cc b/modules/gui/src/python_shell/python_shell_text_document_layout.cc index 2fb465771..bb95922f0 100644 --- a/modules/gui/src/python_shell/python_shell_text_document_layout.cc +++ b/modules/gui/src/python_shell/python_shell_text_document_layout.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_shell_text_document_layout.hh b/modules/gui/src/python_shell/python_shell_text_document_layout.hh index 5e56ba413..903867a3f 100644 --- a/modules/gui/src/python_shell/python_shell_text_document_layout.hh +++ b/modules/gui/src/python_shell/python_shell_text_document_layout.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_shell_widget.cc b/modules/gui/src/python_shell/python_shell_widget.cc index dc1190018..f94f909c8 100644 --- a/modules/gui/src/python_shell/python_shell_widget.cc +++ b/modules/gui/src/python_shell/python_shell_widget.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_shell_widget.hh b/modules/gui/src/python_shell/python_shell_widget.hh index 9ab34b259..a7e507b65 100644 --- a/modules/gui/src/python_shell/python_shell_widget.hh +++ b/modules/gui/src/python_shell/python_shell_widget.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_syntax_highlighter.cc b/modules/gui/src/python_shell/python_syntax_highlighter.cc index c4488112d..cca2c0b8b 100644 --- a/modules/gui/src/python_shell/python_syntax_highlighter.cc +++ b/modules/gui/src/python_shell/python_syntax_highlighter.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_syntax_highlighter.hh b/modules/gui/src/python_shell/python_syntax_highlighter.hh index e31413678..aaa97a529 100644 --- a/modules/gui/src/python_shell/python_syntax_highlighter.hh +++ b/modules/gui/src/python_shell/python_syntax_highlighter.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/python_tokenizer.cc b/modules/gui/src/python_shell/python_tokenizer.cc index 1cbbc235b..3c6b2d3d8 100644 --- a/modules/gui/src/python_shell/python_tokenizer.cc +++ b/modules/gui/src/python_shell/python_tokenizer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/gui/src/python_shell/python_tokenizer.hh b/modules/gui/src/python_shell/python_tokenizer.hh index 3e85c89fe..49dc6c5c9 100644 --- a/modules/gui/src/python_shell/python_tokenizer.hh +++ b/modules/gui/src/python_shell/python_tokenizer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/shell_history.cc b/modules/gui/src/python_shell/shell_history.cc index 01d7e16c3..08d96cd6e 100644 --- a/modules/gui/src/python_shell/shell_history.cc +++ b/modules/gui/src/python_shell/shell_history.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/shell_history.hh b/modules/gui/src/python_shell/shell_history.hh index a39d74129..20e0405af 100644 --- a/modules/gui/src/python_shell/shell_history.hh +++ b/modules/gui/src/python_shell/shell_history.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/string_literal_positions.cc b/modules/gui/src/python_shell/string_literal_positions.cc index 219a7d6c3..d1dd8ce5c 100644 --- a/modules/gui/src/python_shell/string_literal_positions.cc +++ b/modules/gui/src/python_shell/string_literal_positions.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/string_literal_positions.hh b/modules/gui/src/python_shell/string_literal_positions.hh index 3954a108e..d7d9e17d2 100644 --- a/modules/gui/src/python_shell/string_literal_positions.hh +++ b/modules/gui/src/python_shell/string_literal_positions.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/text_logger.cc b/modules/gui/src/python_shell/text_logger.cc index 04123b9a7..1dda3afbb 100644 --- a/modules/gui/src/python_shell/text_logger.cc +++ b/modules/gui/src/python_shell/text_logger.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/python_shell/text_logger.hh b/modules/gui/src/python_shell/text_logger.hh index 9e46fc740..444092c07 100644 --- a/modules/gui/src/python_shell/text_logger.hh +++ b/modules/gui/src/python_shell/text_logger.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/remote_loader.cc b/modules/gui/src/remote_loader.cc index 2e07f9ab5..a75a0b4a1 100644 --- a/modules/gui/src/remote_loader.cc +++ b/modules/gui/src/remote_loader.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/remote_loader.hh b/modules/gui/src/remote_loader.hh index 92c5aa9f8..1d33e6d0b 100644 --- a/modules/gui/src/remote_loader.hh +++ b/modules/gui/src/remote_loader.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/remote_site_loader.cc b/modules/gui/src/remote_site_loader.cc index 26bd25cc5..814616697 100644 --- a/modules/gui/src/remote_site_loader.cc +++ b/modules/gui/src/remote_site_loader.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/remote_site_loader.hh b/modules/gui/src/remote_site_loader.hh index b00823af7..5412441a1 100644 --- a/modules/gui/src/remote_site_loader.hh +++ b/modules/gui/src/remote_site_loader.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/scene_menu.cc b/modules/gui/src/scene_menu.cc index 7952b8c47..67f85b90d 100644 --- a/modules/gui/src/scene_menu.cc +++ b/modules/gui/src/scene_menu.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/scene_menu.hh b/modules/gui/src/scene_menu.hh index 9472a6245..5c009cba6 100644 --- a/modules/gui/src/scene_menu.hh +++ b/modules/gui/src/scene_menu.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/scene_selection.cc b/modules/gui/src/scene_selection.cc index c2ac7f630..2ee945096 100644 --- a/modules/gui/src/scene_selection.cc +++ b/modules/gui/src/scene_selection.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/scene_selection.hh b/modules/gui/src/scene_selection.hh index ebc2bbfdb..61b8c9391 100644 --- a/modules/gui/src/scene_selection.hh +++ b/modules/gui/src/scene_selection.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/scene_win/context_menu.cc b/modules/gui/src/scene_win/context_menu.cc index 52b71d38b..1834b71a4 100644 --- a/modules/gui/src/scene_win/context_menu.cc +++ b/modules/gui/src/scene_win/context_menu.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/scene_win/context_menu.hh b/modules/gui/src/scene_win/context_menu.hh index 03007fc6f..c145164d7 100644 --- a/modules/gui/src/scene_win/context_menu.hh +++ b/modules/gui/src/scene_win/context_menu.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/scene_win/gfx_scene_node.cc b/modules/gui/src/scene_win/gfx_scene_node.cc index 048cee446..2b7255f25 100644 --- a/modules/gui/src/scene_win/gfx_scene_node.cc +++ b/modules/gui/src/scene_win/gfx_scene_node.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/scene_win/gfx_scene_node.hh b/modules/gui/src/scene_win/gfx_scene_node.hh index 03100392f..9d779dcb7 100644 --- a/modules/gui/src/scene_win/gfx_scene_node.hh +++ b/modules/gui/src/scene_win/gfx_scene_node.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/scene_win/root_node.cc b/modules/gui/src/scene_win/root_node.cc index 98fc34dc9..6c61c775d 100644 --- a/modules/gui/src/scene_win/root_node.cc +++ b/modules/gui/src/scene_win/root_node.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/scene_win/root_node.hh b/modules/gui/src/scene_win/root_node.hh index 4775e6246..ef2292c4d 100644 --- a/modules/gui/src/scene_win/root_node.hh +++ b/modules/gui/src/scene_win/root_node.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/scene_win/scene_node.cc b/modules/gui/src/scene_win/scene_node.cc index 024513538..347b529a5 100644 --- a/modules/gui/src/scene_win/scene_node.cc +++ b/modules/gui/src/scene_win/scene_node.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/scene_win/scene_node.hh b/modules/gui/src/scene_win/scene_node.hh index 9fbdd7cda..f701e67b5 100644 --- a/modules/gui/src/scene_win/scene_node.hh +++ b/modules/gui/src/scene_win/scene_node.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/scene_win/scene_win.cc b/modules/gui/src/scene_win/scene_win.cc index e398f9678..2e8375075 100644 --- a/modules/gui/src/scene_win/scene_win.cc +++ b/modules/gui/src/scene_win/scene_win.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/scene_win/scene_win.hh b/modules/gui/src/scene_win/scene_win.hh index c0f16a5dc..08309508f 100644 --- a/modules/gui/src/scene_win/scene_win.hh +++ b/modules/gui/src/scene_win/scene_win.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/scene_win/scene_win_model.cc b/modules/gui/src/scene_win/scene_win_model.cc index 6c833ba48..08cebc449 100644 --- a/modules/gui/src/scene_win/scene_win_model.cc +++ b/modules/gui/src/scene_win/scene_win_model.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/scene_win/scene_win_model.hh b/modules/gui/src/scene_win/scene_win_model.hh index fbcee3d4b..c476b16f2 100644 --- a/modules/gui/src/scene_win/scene_win_model.hh +++ b/modules/gui/src/scene_win/scene_win_model.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/align_properties_painter.cc b/modules/gui/src/sequence_viewer/align_properties_painter.cc index 0dd51f36d..c761267e4 100644 --- a/modules/gui/src/sequence_viewer/align_properties_painter.cc +++ b/modules/gui/src/sequence_viewer/align_properties_painter.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/align_properties_painter.hh b/modules/gui/src/sequence_viewer/align_properties_painter.hh index 13bda8bab..50a36a11c 100644 --- a/modules/gui/src/sequence_viewer/align_properties_painter.hh +++ b/modules/gui/src/sequence_viewer/align_properties_painter.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/alignment_view_object.cc b/modules/gui/src/sequence_viewer/alignment_view_object.cc index 1ce665c5c..a12a2e54b 100644 --- a/modules/gui/src/sequence_viewer/alignment_view_object.cc +++ b/modules/gui/src/sequence_viewer/alignment_view_object.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/alignment_view_object.hh b/modules/gui/src/sequence_viewer/alignment_view_object.hh index b8fee2800..37d38e9f7 100644 --- a/modules/gui/src/sequence_viewer/alignment_view_object.hh +++ b/modules/gui/src/sequence_viewer/alignment_view_object.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/background_painter.cc b/modules/gui/src/sequence_viewer/background_painter.cc index 7e45f62bd..b2c86168f 100644 --- a/modules/gui/src/sequence_viewer/background_painter.cc +++ b/modules/gui/src/sequence_viewer/background_painter.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/background_painter.hh b/modules/gui/src/sequence_viewer/background_painter.hh index dc97901d4..ec496675b 100644 --- a/modules/gui/src/sequence_viewer/background_painter.hh +++ b/modules/gui/src/sequence_viewer/background_painter.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/base_row.cc b/modules/gui/src/sequence_viewer/base_row.cc index 2491b765d..c4c2a76ae 100644 --- a/modules/gui/src/sequence_viewer/base_row.cc +++ b/modules/gui/src/sequence_viewer/base_row.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/base_row.hh b/modules/gui/src/sequence_viewer/base_row.hh index 12b86caeb..544a7d755 100644 --- a/modules/gui/src/sequence_viewer/base_row.hh +++ b/modules/gui/src/sequence_viewer/base_row.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/base_view_object.cc b/modules/gui/src/sequence_viewer/base_view_object.cc index 716cdb8d8..5f567bab7 100644 --- a/modules/gui/src/sequence_viewer/base_view_object.cc +++ b/modules/gui/src/sequence_viewer/base_view_object.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/base_view_object.hh b/modules/gui/src/sequence_viewer/base_view_object.hh index fc843813d..80842f877 100644 --- a/modules/gui/src/sequence_viewer/base_view_object.hh +++ b/modules/gui/src/sequence_viewer/base_view_object.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/conservation_painter.cc b/modules/gui/src/sequence_viewer/conservation_painter.cc index b5e708548..91babf268 100644 --- a/modules/gui/src/sequence_viewer/conservation_painter.cc +++ b/modules/gui/src/sequence_viewer/conservation_painter.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/conservation_painter.hh b/modules/gui/src/sequence_viewer/conservation_painter.hh index f6cea3159..849c09c63 100644 --- a/modules/gui/src/sequence_viewer/conservation_painter.hh +++ b/modules/gui/src/sequence_viewer/conservation_painter.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/painter.hh b/modules/gui/src/sequence_viewer/painter.hh index 971c0b1f8..26303e0cf 100644 --- a/modules/gui/src/sequence_viewer/painter.hh +++ b/modules/gui/src/sequence_viewer/painter.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/secstr_row.cc b/modules/gui/src/sequence_viewer/secstr_row.cc index 506867d00..1f7153753 100644 --- a/modules/gui/src/sequence_viewer/secstr_row.cc +++ b/modules/gui/src/sequence_viewer/secstr_row.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/secstr_row.hh b/modules/gui/src/sequence_viewer/secstr_row.hh index 900659cd0..cdfebf148 100644 --- a/modules/gui/src/sequence_viewer/secstr_row.hh +++ b/modules/gui/src/sequence_viewer/secstr_row.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/seq_secstr_painter.cc b/modules/gui/src/sequence_viewer/seq_secstr_painter.cc index df3a284d8..2fd54b35e 100644 --- a/modules/gui/src/sequence_viewer/seq_secstr_painter.cc +++ b/modules/gui/src/sequence_viewer/seq_secstr_painter.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/seq_secstr_painter.hh b/modules/gui/src/sequence_viewer/seq_secstr_painter.hh index 3dc5fdcb4..0d9e36a3b 100644 --- a/modules/gui/src/sequence_viewer/seq_secstr_painter.hh +++ b/modules/gui/src/sequence_viewer/seq_secstr_painter.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/seq_selection_painter.cc b/modules/gui/src/sequence_viewer/seq_selection_painter.cc index 4cff32d95..2ca4ad9ce 100644 --- a/modules/gui/src/sequence_viewer/seq_selection_painter.cc +++ b/modules/gui/src/sequence_viewer/seq_selection_painter.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/seq_selection_painter.hh b/modules/gui/src/sequence_viewer/seq_selection_painter.hh index 68174501a..bef7ab1da 100644 --- a/modules/gui/src/sequence_viewer/seq_selection_painter.hh +++ b/modules/gui/src/sequence_viewer/seq_selection_painter.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/seq_text_painter.cc b/modules/gui/src/sequence_viewer/seq_text_painter.cc index ea1599e9e..157c97a04 100644 --- a/modules/gui/src/sequence_viewer/seq_text_painter.cc +++ b/modules/gui/src/sequence_viewer/seq_text_painter.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/seq_text_painter.hh b/modules/gui/src/sequence_viewer/seq_text_painter.hh index 89d319080..771acdc6a 100644 --- a/modules/gui/src/sequence_viewer/seq_text_painter.hh +++ b/modules/gui/src/sequence_viewer/seq_text_painter.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/sequence_delegate.cc b/modules/gui/src/sequence_viewer/sequence_delegate.cc index ba2598b85..46cfbe05e 100644 --- a/modules/gui/src/sequence_viewer/sequence_delegate.cc +++ b/modules/gui/src/sequence_viewer/sequence_delegate.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/sequence_delegate.hh b/modules/gui/src/sequence_viewer/sequence_delegate.hh index 4396faafa..e70dc118b 100644 --- a/modules/gui/src/sequence_viewer/sequence_delegate.hh +++ b/modules/gui/src/sequence_viewer/sequence_delegate.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/sequence_model.cc b/modules/gui/src/sequence_viewer/sequence_model.cc index 985231540..0a98033c7 100644 --- a/modules/gui/src/sequence_viewer/sequence_model.cc +++ b/modules/gui/src/sequence_viewer/sequence_model.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/sequence_model.hh b/modules/gui/src/sequence_viewer/sequence_model.hh index 0da09222e..aa3f0f44e 100644 --- a/modules/gui/src/sequence_viewer/sequence_model.hh +++ b/modules/gui/src/sequence_viewer/sequence_model.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/sequence_row.cc b/modules/gui/src/sequence_viewer/sequence_row.cc index 77bc27897..30199dd6f 100644 --- a/modules/gui/src/sequence_viewer/sequence_row.cc +++ b/modules/gui/src/sequence_viewer/sequence_row.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/sequence_row.hh b/modules/gui/src/sequence_viewer/sequence_row.hh index b48c1c627..cbe6e2855 100644 --- a/modules/gui/src/sequence_viewer/sequence_row.hh +++ b/modules/gui/src/sequence_viewer/sequence_row.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/sequence_search_bar.cc b/modules/gui/src/sequence_viewer/sequence_search_bar.cc index 9ae88675e..d367b56ed 100644 --- a/modules/gui/src/sequence_viewer/sequence_search_bar.cc +++ b/modules/gui/src/sequence_viewer/sequence_search_bar.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/sequence_search_bar.hh b/modules/gui/src/sequence_viewer/sequence_search_bar.hh index 865a42be2..13e4f0fd0 100644 --- a/modules/gui/src/sequence_viewer/sequence_search_bar.hh +++ b/modules/gui/src/sequence_viewer/sequence_search_bar.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/sequence_table_view.cc b/modules/gui/src/sequence_viewer/sequence_table_view.cc index bbe7a2da3..90b4baa5b 100644 --- a/modules/gui/src/sequence_viewer/sequence_table_view.cc +++ b/modules/gui/src/sequence_viewer/sequence_table_view.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/sequence_table_view.hh b/modules/gui/src/sequence_viewer/sequence_table_view.hh index 28eaf3b19..37d9dac82 100644 --- a/modules/gui/src/sequence_viewer/sequence_table_view.hh +++ b/modules/gui/src/sequence_viewer/sequence_table_view.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/sequence_view_object.cc b/modules/gui/src/sequence_viewer/sequence_view_object.cc index e884de755..f9303f8dd 100644 --- a/modules/gui/src/sequence_viewer/sequence_view_object.cc +++ b/modules/gui/src/sequence_viewer/sequence_view_object.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/sequence_view_object.hh b/modules/gui/src/sequence_viewer/sequence_view_object.hh index 9060052e8..19398db99 100644 --- a/modules/gui/src/sequence_viewer/sequence_view_object.hh +++ b/modules/gui/src/sequence_viewer/sequence_view_object.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/sequence_viewer.cc b/modules/gui/src/sequence_viewer/sequence_viewer.cc index 82f3892ba..f1a7c5675 100644 --- a/modules/gui/src/sequence_viewer/sequence_viewer.cc +++ b/modules/gui/src/sequence_viewer/sequence_viewer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/sequence_viewer.hh b/modules/gui/src/sequence_viewer/sequence_viewer.hh index 7fadb40db..bce3c41e5 100644 --- a/modules/gui/src/sequence_viewer/sequence_viewer.hh +++ b/modules/gui/src/sequence_viewer/sequence_viewer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/tick_painter.cc b/modules/gui/src/sequence_viewer/tick_painter.cc index 4324ae824..eee4143d6 100644 --- a/modules/gui/src/sequence_viewer/tick_painter.cc +++ b/modules/gui/src/sequence_viewer/tick_painter.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/tick_painter.hh b/modules/gui/src/sequence_viewer/tick_painter.hh index 11ff679bb..e2c842616 100644 --- a/modules/gui/src/sequence_viewer/tick_painter.hh +++ b/modules/gui/src/sequence_viewer/tick_painter.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/title_row.cc b/modules/gui/src/sequence_viewer/title_row.cc index b8b05fbca..ba7aaf280 100644 --- a/modules/gui/src/sequence_viewer/title_row.cc +++ b/modules/gui/src/sequence_viewer/title_row.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/sequence_viewer/title_row.hh b/modules/gui/src/sequence_viewer/title_row.hh index 409d62e50..8cc3d9abb 100644 --- a/modules/gui/src/sequence_viewer/title_row.hh +++ b/modules/gui/src/sequence_viewer/title_row.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/thin_splitter.cc b/modules/gui/src/thin_splitter.cc index aed72b937..ba425ffa8 100644 --- a/modules/gui/src/thin_splitter.cc +++ b/modules/gui/src/thin_splitter.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/thin_splitter.hh b/modules/gui/src/thin_splitter.hh index 9383b3cd4..2014121b6 100644 --- a/modules/gui/src/thin_splitter.hh +++ b/modules/gui/src/thin_splitter.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/manipulator.cc b/modules/gui/src/tools/manipulator.cc index 29fe8b703..c24691c44 100644 --- a/modules/gui/src/tools/manipulator.cc +++ b/modules/gui/src/tools/manipulator.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/manipulator.hh b/modules/gui/src/tools/manipulator.hh index 2affc6628..78a6f88dc 100644 --- a/modules/gui/src/tools/manipulator.hh +++ b/modules/gui/src/tools/manipulator.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/map_tool.cc b/modules/gui/src/tools/map_tool.cc index 5b8872839..d5f9dac59 100644 --- a/modules/gui/src/tools/map_tool.cc +++ b/modules/gui/src/tools/map_tool.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/map_tool.hh b/modules/gui/src/tools/map_tool.hh index 35547b515..e7ed5b61e 100644 --- a/modules/gui/src/tools/map_tool.hh +++ b/modules/gui/src/tools/map_tool.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/measure_tool.cc b/modules/gui/src/tools/measure_tool.cc index fb12cad50..19d880c98 100644 --- a/modules/gui/src/tools/measure_tool.cc +++ b/modules/gui/src/tools/measure_tool.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/measure_tool.hh b/modules/gui/src/tools/measure_tool.hh index d1eedcef7..0fd655a6a 100644 --- a/modules/gui/src/tools/measure_tool.hh +++ b/modules/gui/src/tools/measure_tool.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/mouse_event.cc b/modules/gui/src/tools/mouse_event.cc index a2b0b4f3f..8c620c8a7 100644 --- a/modules/gui/src/tools/mouse_event.cc +++ b/modules/gui/src/tools/mouse_event.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/mouse_event.hh b/modules/gui/src/tools/mouse_event.hh index 234ee6d4c..c46f17916 100644 --- a/modules/gui/src/tools/mouse_event.hh +++ b/modules/gui/src/tools/mouse_event.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/selection_tool.cc b/modules/gui/src/tools/selection_tool.cc index 4b3ad6482..348b308c4 100644 --- a/modules/gui/src/tools/selection_tool.cc +++ b/modules/gui/src/tools/selection_tool.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/selection_tool.hh b/modules/gui/src/tools/selection_tool.hh index a02102fdb..faa680936 100644 --- a/modules/gui/src/tools/selection_tool.hh +++ b/modules/gui/src/tools/selection_tool.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/tool.cc b/modules/gui/src/tools/tool.cc index 99998b494..4792763f3 100644 --- a/modules/gui/src/tools/tool.cc +++ b/modules/gui/src/tools/tool.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/tool.hh b/modules/gui/src/tools/tool.hh index 0be85bc7d..3d79931cb 100644 --- a/modules/gui/src/tools/tool.hh +++ b/modules/gui/src/tools/tool.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/tool_bar.cc b/modules/gui/src/tools/tool_bar.cc index 7a59970ff..aeac798a4 100644 --- a/modules/gui/src/tools/tool_bar.cc +++ b/modules/gui/src/tools/tool_bar.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/tool_bar.hh b/modules/gui/src/tools/tool_bar.hh index f58594cc5..e904821c9 100644 --- a/modules/gui/src/tools/tool_bar.hh +++ b/modules/gui/src/tools/tool_bar.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/tool_manager.cc b/modules/gui/src/tools/tool_manager.cc index dd06ef606..249c3a0ce 100644 --- a/modules/gui/src/tools/tool_manager.cc +++ b/modules/gui/src/tools/tool_manager.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/tool_manager.hh b/modules/gui/src/tools/tool_manager.hh index d571f0015..85e051a9c 100644 --- a/modules/gui/src/tools/tool_manager.hh +++ b/modules/gui/src/tools/tool_manager.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/tool_option.cc b/modules/gui/src/tools/tool_option.cc index 699a4e60d..970c8f779 100644 --- a/modules/gui/src/tools/tool_option.cc +++ b/modules/gui/src/tools/tool_option.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/tool_option.hh b/modules/gui/src/tools/tool_option.hh index ff08fad0d..700cac3c6 100644 --- a/modules/gui/src/tools/tool_option.hh +++ b/modules/gui/src/tools/tool_option.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/tool_option_group.cc b/modules/gui/src/tools/tool_option_group.cc index 5e6b6faff..df5d8dcd5 100644 --- a/modules/gui/src/tools/tool_option_group.cc +++ b/modules/gui/src/tools/tool_option_group.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/tool_option_group.hh b/modules/gui/src/tools/tool_option_group.hh index ead9a57e3..3be9a7681 100644 --- a/modules/gui/src/tools/tool_option_group.hh +++ b/modules/gui/src/tools/tool_option_group.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/tool_options.cc b/modules/gui/src/tools/tool_options.cc index ea4be6a04..a8b1557dc 100644 --- a/modules/gui/src/tools/tool_options.cc +++ b/modules/gui/src/tools/tool_options.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/tool_options.hh b/modules/gui/src/tools/tool_options.hh index f4c9adeda..47e178324 100644 --- a/modules/gui/src/tools/tool_options.hh +++ b/modules/gui/src/tools/tool_options.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/tool_options_widget.cc b/modules/gui/src/tools/tool_options_widget.cc index 6fd14dffd..58c175493 100644 --- a/modules/gui/src/tools/tool_options_widget.cc +++ b/modules/gui/src/tools/tool_options_widget.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/tool_options_widget.hh b/modules/gui/src/tools/tool_options_widget.hh index 525ab55a3..42cc48cd1 100644 --- a/modules/gui/src/tools/tool_options_widget.hh +++ b/modules/gui/src/tools/tool_options_widget.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/tool_options_win.cc b/modules/gui/src/tools/tool_options_win.cc index 56b2f551d..61fa450c8 100644 --- a/modules/gui/src/tools/tool_options_win.cc +++ b/modules/gui/src/tools/tool_options_win.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/tools/tool_options_win.hh b/modules/gui/src/tools/tool_options_win.hh index 9c1d7900c..eb90f5f9a 100644 --- a/modules/gui/src/tools/tool_options_win.hh +++ b/modules/gui/src/tools/tool_options_win.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/widget.cc b/modules/gui/src/widget.cc index 7a94cc0dd..809dc477b 100644 --- a/modules/gui/src/widget.cc +++ b/modules/gui/src/widget.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/widget.hh b/modules/gui/src/widget.hh index 45252b047..c52d396c9 100644 --- a/modules/gui/src/widget.hh +++ b/modules/gui/src/widget.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/widget_geom_handler.cc b/modules/gui/src/widget_geom_handler.cc index aa2acd8d9..431fd8ff1 100644 --- a/modules/gui/src/widget_geom_handler.cc +++ b/modules/gui/src/widget_geom_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/widget_geom_handler.hh b/modules/gui/src/widget_geom_handler.hh index 191a4c992..e1f664c08 100644 --- a/modules/gui/src/widget_geom_handler.hh +++ b/modules/gui/src/widget_geom_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/widget_pool.cc b/modules/gui/src/widget_pool.cc index 095478f96..f19735efe 100644 --- a/modules/gui/src/widget_pool.cc +++ b/modules/gui/src/widget_pool.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/widget_pool.hh b/modules/gui/src/widget_pool.hh index 8a938c635..bc480825a 100644 --- a/modules/gui/src/widget_pool.hh +++ b/modules/gui/src/widget_pool.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/widget_registry.cc b/modules/gui/src/widget_registry.cc index 965545f12..b9c20757d 100644 --- a/modules/gui/src/widget_registry.cc +++ b/modules/gui/src/widget_registry.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/widget_registry.hh b/modules/gui/src/widget_registry.hh index 6c1aa8ba7..643e5fa54 100644 --- a/modules/gui/src/widget_registry.hh +++ b/modules/gui/src/widget_registry.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/widget_state_saver.cc b/modules/gui/src/widget_state_saver.cc index b1f4a9545..a02863f59 100644 --- a/modules/gui/src/widget_state_saver.cc +++ b/modules/gui/src/widget_state_saver.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/gui/src/widget_state_saver.hh b/modules/gui/src/widget_state_saver.hh index f9a7fba51..cf5e0a8f5 100644 --- a/modules/gui/src/widget_state_saver.hh +++ b/modules/gui/src/widget_state_saver.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/img/alg/pymod/__init__.py b/modules/img/alg/pymod/__init__.py index 3ee71fbac..e8def65a4 100644 --- a/modules/img/alg/pymod/__init__.py +++ b/modules/img/alg/pymod/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/img/alg/pymod/export_filter.cc b/modules/img/alg/pymod/export_filter.cc index 9b2636c0c..f1bf0f779 100644 --- a/modules/img/alg/pymod/export_filter.cc +++ b/modules/img/alg/pymod/export_filter.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/pymod/export_normalizer.cc b/modules/img/alg/pymod/export_normalizer.cc index b36ff9a7a..de8a3f016 100644 --- a/modules/img/alg/pymod/export_normalizer.cc +++ b/modules/img/alg/pymod/export_normalizer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/pymod/export_polar.cc b/modules/img/alg/pymod/export_polar.cc index 385a5dd6c..f41aae120 100644 --- a/modules/img/alg/pymod/export_polar.cc +++ b/modules/img/alg/pymod/export_polar.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/pymod/export_transcendentals.cc b/modules/img/alg/pymod/export_transcendentals.cc index e2f22e8c1..3f0a638c2 100644 --- a/modules/img/alg/pymod/export_transcendentals.cc +++ b/modules/img/alg/pymod/export_transcendentals.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/pymod/wrap_alg.cc b/modules/img/alg/pymod/wrap_alg.cc index 4ff322bb0..a4f18f028 100644 --- a/modules/img/alg/pymod/wrap_alg.cc +++ b/modules/img/alg/pymod/wrap_alg.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/pymod/wrap_tf.cc b/modules/img/alg/pymod/wrap_tf.cc index 1b676a42c..f720d1dd5 100644 --- a/modules/img/alg/pymod/wrap_tf.cc +++ b/modules/img/alg/pymod/wrap_tf.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/alg_mirror.cc b/modules/img/alg/src/alg_mirror.cc index f32a23616..8b92849a6 100644 --- a/modules/img/alg/src/alg_mirror.cc +++ b/modules/img/alg/src/alg_mirror.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/alg_mirror.hh b/modules/img/alg/src/alg_mirror.hh index d98435920..b2a0cb099 100644 --- a/modules/img/alg/src/alg_mirror.hh +++ b/modules/img/alg/src/alg_mirror.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/alg_shift.cc b/modules/img/alg/src/alg_shift.cc index 7663bf639..f39a5b4ef 100644 --- a/modules/img/alg/src/alg_shift.cc +++ b/modules/img/alg/src/alg_shift.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/alg_shift.hh b/modules/img/alg/src/alg_shift.hh index 014484bd0..dc47beb77 100644 --- a/modules/img/alg/src/alg_shift.hh +++ b/modules/img/alg/src/alg_shift.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/alg_transform.cc b/modules/img/alg/src/alg_transform.cc index 6cf049267..f0dadad3d 100644 --- a/modules/img/alg/src/alg_transform.cc +++ b/modules/img/alg/src/alg_transform.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/alg_transform.hh b/modules/img/alg/src/alg_transform.hh index 436e3a257..5e461d95c 100644 --- a/modules/img/alg/src/alg_transform.hh +++ b/modules/img/alg/src/alg_transform.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/anisotropic.cc b/modules/img/alg/src/anisotropic.cc index a9f2cf41e..3ed2d1f47 100644 --- a/modules/img/alg/src/anisotropic.cc +++ b/modules/img/alg/src/anisotropic.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/anisotropic.hh b/modules/img/alg/src/anisotropic.hh index 7bf9ea53a..53b6e1ca0 100644 --- a/modules/img/alg/src/anisotropic.hh +++ b/modules/img/alg/src/anisotropic.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/auto_correlate.cc b/modules/img/alg/src/auto_correlate.cc index cbf4b0c57..5256ff368 100644 --- a/modules/img/alg/src/auto_correlate.cc +++ b/modules/img/alg/src/auto_correlate.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/auto_correlate.hh b/modules/img/alg/src/auto_correlate.hh index 813f62dd7..420d98297 100644 --- a/modules/img/alg/src/auto_correlate.hh +++ b/modules/img/alg/src/auto_correlate.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/clear.hh b/modules/img/alg/src/clear.hh index ec15cf337..bf05037fe 100644 --- a/modules/img/alg/src/clear.hh +++ b/modules/img/alg/src/clear.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/clip_min_max.hh b/modules/img/alg/src/clip_min_max.hh index 50661df05..e44a3e4c3 100644 --- a/modules/img/alg/src/clip_min_max.hh +++ b/modules/img/alg/src/clip_min_max.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/conjugate.hh b/modules/img/alg/src/conjugate.hh index 49a86341f..9a8e4a225 100644 --- a/modules/img/alg/src/conjugate.hh +++ b/modules/img/alg/src/conjugate.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/convolute.cc b/modules/img/alg/src/convolute.cc index 31ea54807..f34cf7285 100644 --- a/modules/img/alg/src/convolute.cc +++ b/modules/img/alg/src/convolute.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/convolute.hh b/modules/img/alg/src/convolute.hh index 32b7cdae8..a55a292e3 100644 --- a/modules/img/alg/src/convolute.hh +++ b/modules/img/alg/src/convolute.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/correlate.cc b/modules/img/alg/src/correlate.cc index d9833ee05..04f1b75f6 100644 --- a/modules/img/alg/src/correlate.cc +++ b/modules/img/alg/src/correlate.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/correlate.hh b/modules/img/alg/src/correlate.hh index 0a2210ccd..a88ea5664 100644 --- a/modules/img/alg/src/correlate.hh +++ b/modules/img/alg/src/correlate.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/cross_correlate.cc b/modules/img/alg/src/cross_correlate.cc index 506640598..7df974ebe 100644 --- a/modules/img/alg/src/cross_correlate.cc +++ b/modules/img/alg/src/cross_correlate.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/cross_correlate.hh b/modules/img/alg/src/cross_correlate.hh index a63384380..17a2a7b94 100644 --- a/modules/img/alg/src/cross_correlate.hh +++ b/modules/img/alg/src/cross_correlate.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/custom_transformer.cc b/modules/img/alg/src/custom_transformer.cc index 5f4a70c88..6f783e83a 100644 --- a/modules/img/alg/src/custom_transformer.cc +++ b/modules/img/alg/src/custom_transformer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/custom_transformer.hh b/modules/img/alg/src/custom_transformer.hh index b5199aa58..8e2798d6c 100644 --- a/modules/img/alg/src/custom_transformer.hh +++ b/modules/img/alg/src/custom_transformer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/density_slice.cc b/modules/img/alg/src/density_slice.cc index 013576478..2b54526be 100644 --- a/modules/img/alg/src/density_slice.cc +++ b/modules/img/alg/src/density_slice.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/density_slice.hh b/modules/img/alg/src/density_slice.hh index c2d353a67..ef2d07714 100644 --- a/modules/img/alg/src/density_slice.hh +++ b/modules/img/alg/src/density_slice.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/dft.cc b/modules/img/alg/src/dft.cc index 10f866cbc..b5ca096d0 100644 --- a/modules/img/alg/src/dft.cc +++ b/modules/img/alg/src/dft.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/dft.hh b/modules/img/alg/src/dft.hh index fd94d68e9..32dcf022e 100644 --- a/modules/img/alg/src/dft.hh +++ b/modules/img/alg/src/dft.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/discrete_shrink.cc b/modules/img/alg/src/discrete_shrink.cc index 3bc1fa2d1..d24979b3f 100644 --- a/modules/img/alg/src/discrete_shrink.cc +++ b/modules/img/alg/src/discrete_shrink.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/discrete_shrink.hh b/modules/img/alg/src/discrete_shrink.hh index 8090774ea..29bbfe561 100644 --- a/modules/img/alg/src/discrete_shrink.hh +++ b/modules/img/alg/src/discrete_shrink.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/fft.cc b/modules/img/alg/src/fft.cc index de8480e55..3f3f90f5a 100644 --- a/modules/img/alg/src/fft.cc +++ b/modules/img/alg/src/fft.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/fft.hh b/modules/img/alg/src/fft.hh index d306f8b3e..e55471633 100644 --- a/modules/img/alg/src/fft.hh +++ b/modules/img/alg/src/fft.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/fftw_helper.hh b/modules/img/alg/src/fftw_helper.hh index 081ff7278..365eb6d66 100644 --- a/modules/img/alg/src/fftw_helper.hh +++ b/modules/img/alg/src/fftw_helper.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/img/alg/src/fill.hh b/modules/img/alg/src/fill.hh index be6b9ae09..b023d70f5 100644 --- a/modules/img/alg/src/fill.hh +++ b/modules/img/alg/src/fill.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/filter.hh b/modules/img/alg/src/filter.hh index b7be07ecf..3cd7399de 100644 --- a/modules/img/alg/src/filter.hh +++ b/modules/img/alg/src/filter.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/fourier_filters.cc b/modules/img/alg/src/fourier_filters.cc index dbf915e5b..a1b355b2d 100644 --- a/modules/img/alg/src/fourier_filters.cc +++ b/modules/img/alg/src/fourier_filters.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/fourier_filters.hh b/modules/img/alg/src/fourier_filters.hh index 12ea09995..3f3fa9303 100644 --- a/modules/img/alg/src/fourier_filters.hh +++ b/modules/img/alg/src/fourier_filters.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/fractional_shift.cc b/modules/img/alg/src/fractional_shift.cc index 9e11a82b0..b7545a523 100644 --- a/modules/img/alg/src/fractional_shift.cc +++ b/modules/img/alg/src/fractional_shift.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/fractional_shift.hh b/modules/img/alg/src/fractional_shift.hh index 8f06e37ee..0328e6620 100644 --- a/modules/img/alg/src/fractional_shift.hh +++ b/modules/img/alg/src/fractional_shift.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/gaussian.cc b/modules/img/alg/src/gaussian.cc index 2fc87aad3..9c8e7880f 100644 --- a/modules/img/alg/src/gaussian.cc +++ b/modules/img/alg/src/gaussian.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/gaussian.hh b/modules/img/alg/src/gaussian.hh index 42430a555..cad9f81d6 100644 --- a/modules/img/alg/src/gaussian.hh +++ b/modules/img/alg/src/gaussian.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/gaussian_gradient_magnitude.cc b/modules/img/alg/src/gaussian_gradient_magnitude.cc index 15910773b..ad3c32702 100644 --- a/modules/img/alg/src/gaussian_gradient_magnitude.cc +++ b/modules/img/alg/src/gaussian_gradient_magnitude.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/gaussian_gradient_magnitude.hh b/modules/img/alg/src/gaussian_gradient_magnitude.hh index dd72f474f..f366b07eb 100644 --- a/modules/img/alg/src/gaussian_gradient_magnitude.hh +++ b/modules/img/alg/src/gaussian_gradient_magnitude.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/gaussian_laplacian.cc b/modules/img/alg/src/gaussian_laplacian.cc index f5f5317b0..1a05a568d 100644 --- a/modules/img/alg/src/gaussian_laplacian.cc +++ b/modules/img/alg/src/gaussian_laplacian.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/gaussian_laplacian.hh b/modules/img/alg/src/gaussian_laplacian.hh index 5d724dac4..5efe73b4f 100644 --- a/modules/img/alg/src/gaussian_laplacian.hh +++ b/modules/img/alg/src/gaussian_laplacian.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/histogram.cc b/modules/img/alg/src/histogram.cc index 1552afa60..0a094bd83 100644 --- a/modules/img/alg/src/histogram.cc +++ b/modules/img/alg/src/histogram.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/histogram.hh b/modules/img/alg/src/histogram.hh index 082fe4282..e6a22592a 100644 --- a/modules/img/alg/src/histogram.hh +++ b/modules/img/alg/src/histogram.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/line_average.cc b/modules/img/alg/src/line_average.cc index c8b2f2fd2..45e38d7a7 100644 --- a/modules/img/alg/src/line_average.cc +++ b/modules/img/alg/src/line_average.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/line_average.hh b/modules/img/alg/src/line_average.hh index c3123493f..fece6ef10 100644 --- a/modules/img/alg/src/line_average.hh +++ b/modules/img/alg/src/line_average.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/line_iterator.cc b/modules/img/alg/src/line_iterator.cc index 2cd81e5a8..782b2fc3e 100644 --- a/modules/img/alg/src/line_iterator.cc +++ b/modules/img/alg/src/line_iterator.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/line_iterator.hh b/modules/img/alg/src/line_iterator.hh index fdc941f62..a42a5d822 100644 --- a/modules/img/alg/src/line_iterator.hh +++ b/modules/img/alg/src/line_iterator.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/local_sigma_threshold.cc b/modules/img/alg/src/local_sigma_threshold.cc index 4a11b7077..062d60d55 100644 --- a/modules/img/alg/src/local_sigma_threshold.cc +++ b/modules/img/alg/src/local_sigma_threshold.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/local_sigma_threshold.hh b/modules/img/alg/src/local_sigma_threshold.hh index e5ad49dce..f66cea6ec 100644 --- a/modules/img/alg/src/local_sigma_threshold.hh +++ b/modules/img/alg/src/local_sigma_threshold.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/mask_image.cc b/modules/img/alg/src/mask_image.cc index 648e31ec4..44e8637ba 100644 --- a/modules/img/alg/src/mask_image.cc +++ b/modules/img/alg/src/mask_image.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/mask_image.hh b/modules/img/alg/src/mask_image.hh index 7ccfd89cf..de1d8ca44 100644 --- a/modules/img/alg/src/mask_image.hh +++ b/modules/img/alg/src/mask_image.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/module_config.hh b/modules/img/alg/src/module_config.hh index 9484d1de7..2ebf29cbf 100644 --- a/modules/img/alg/src/module_config.hh +++ b/modules/img/alg/src/module_config.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/img/alg/src/negate.hh b/modules/img/alg/src/negate.hh index 64db574f3..b61642fc5 100644 --- a/modules/img/alg/src/negate.hh +++ b/modules/img/alg/src/negate.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/norm.hh b/modules/img/alg/src/norm.hh index 1f9baf9e8..6e4c54980 100644 --- a/modules/img/alg/src/norm.hh +++ b/modules/img/alg/src/norm.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/norm_linear.cc b/modules/img/alg/src/norm_linear.cc index 36948743f..4619ab86b 100644 --- a/modules/img/alg/src/norm_linear.cc +++ b/modules/img/alg/src/norm_linear.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/norm_linear.hh b/modules/img/alg/src/norm_linear.hh index 0fd1058dc..9f7c1dbf8 100644 --- a/modules/img/alg/src/norm_linear.hh +++ b/modules/img/alg/src/norm_linear.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/norm_log.cc b/modules/img/alg/src/norm_log.cc index bfcdbc6c0..739d3a6d1 100644 --- a/modules/img/alg/src/norm_log.cc +++ b/modules/img/alg/src/norm_log.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/norm_log.hh b/modules/img/alg/src/norm_log.hh index e1e22a921..4452404c2 100644 --- a/modules/img/alg/src/norm_log.hh +++ b/modules/img/alg/src/norm_log.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/norm_od.cc b/modules/img/alg/src/norm_od.cc index 622fc93ae..75b1a2770 100644 --- a/modules/img/alg/src/norm_od.cc +++ b/modules/img/alg/src/norm_od.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/norm_od.hh b/modules/img/alg/src/norm_od.hh index f4f059fb1..21c22d45c 100644 --- a/modules/img/alg/src/norm_od.hh +++ b/modules/img/alg/src/norm_od.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/normalizer.cc b/modules/img/alg/src/normalizer.cc index 31d0d10d7..0aab1c74d 100644 --- a/modules/img/alg/src/normalizer.cc +++ b/modules/img/alg/src/normalizer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/normalizer.hh b/modules/img/alg/src/normalizer.hh index 994edbbe3..ab4ba6a16 100644 --- a/modules/img/alg/src/normalizer.hh +++ b/modules/img/alg/src/normalizer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/normalizer_factory.cc b/modules/img/alg/src/normalizer_factory.cc index e017d1914..0fef98f0f 100644 --- a/modules/img/alg/src/normalizer_factory.cc +++ b/modules/img/alg/src/normalizer_factory.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/normalizer_factory.hh b/modules/img/alg/src/normalizer_factory.hh index 1c5a56575..e830ed0de 100644 --- a/modules/img/alg/src/normalizer_factory.hh +++ b/modules/img/alg/src/normalizer_factory.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/polar.cc b/modules/img/alg/src/polar.cc index 46debe3c1..aa5fa3745 100644 --- a/modules/img/alg/src/polar.cc +++ b/modules/img/alg/src/polar.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/polar.hh b/modules/img/alg/src/polar.hh index 5ba7625ec..c24b3f670 100644 --- a/modules/img/alg/src/polar.hh +++ b/modules/img/alg/src/polar.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/power_spectrum.cc b/modules/img/alg/src/power_spectrum.cc index 97c0e7bc4..488a188d7 100644 --- a/modules/img/alg/src/power_spectrum.cc +++ b/modules/img/alg/src/power_spectrum.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/power_spectrum.hh b/modules/img/alg/src/power_spectrum.hh index 39816afc8..fd8696581 100644 --- a/modules/img/alg/src/power_spectrum.hh +++ b/modules/img/alg/src/power_spectrum.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/randomize.cc b/modules/img/alg/src/randomize.cc index 112abf0ec..e23dc471d 100644 --- a/modules/img/alg/src/randomize.cc +++ b/modules/img/alg/src/randomize.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/randomize.hh b/modules/img/alg/src/randomize.hh index 739413500..cc3fc20d6 100644 --- a/modules/img/alg/src/randomize.hh +++ b/modules/img/alg/src/randomize.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/rscrosscorr.cc b/modules/img/alg/src/rscrosscorr.cc index e42aa25cc..037c0f6ed 100644 --- a/modules/img/alg/src/rscrosscorr.cc +++ b/modules/img/alg/src/rscrosscorr.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/img/alg/src/rscrosscorr.hh b/modules/img/alg/src/rscrosscorr.hh index 78269d3bf..cc8eaddb5 100644 --- a/modules/img/alg/src/rscrosscorr.hh +++ b/modules/img/alg/src/rscrosscorr.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/img/alg/src/smooth_mask_image.cc b/modules/img/alg/src/smooth_mask_image.cc index 24409e7d4..f4c8a506c 100644 --- a/modules/img/alg/src/smooth_mask_image.cc +++ b/modules/img/alg/src/smooth_mask_image.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/smooth_mask_image.hh b/modules/img/alg/src/smooth_mask_image.hh index 8ced40336..d2c7f59cc 100644 --- a/modules/img/alg/src/smooth_mask_image.hh +++ b/modules/img/alg/src/smooth_mask_image.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/stat.cc b/modules/img/alg/src/stat.cc index 2e4ea577d..8f43ca399 100644 --- a/modules/img/alg/src/stat.cc +++ b/modules/img/alg/src/stat.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/stat.hh b/modules/img/alg/src/stat.hh index a2050fb99..82757dc72 100644 --- a/modules/img/alg/src/stat.hh +++ b/modules/img/alg/src/stat.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/stat_min_max.cc b/modules/img/alg/src/stat_min_max.cc index fcdd3c71f..3b46db02e 100644 --- a/modules/img/alg/src/stat_min_max.cc +++ b/modules/img/alg/src/stat_min_max.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/stat_min_max.hh b/modules/img/alg/src/stat_min_max.hh index 1b61ecf9b..b1a89bc81 100644 --- a/modules/img/alg/src/stat_min_max.hh +++ b/modules/img/alg/src/stat_min_max.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/threshold.cc b/modules/img/alg/src/threshold.cc index d8e9155a5..1437c53de 100644 --- a/modules/img/alg/src/threshold.cc +++ b/modules/img/alg/src/threshold.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/threshold.hh b/modules/img/alg/src/threshold.hh index 8278fab6a..490fd514e 100644 --- a/modules/img/alg/src/threshold.hh +++ b/modules/img/alg/src/threshold.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/transcendentals.hh b/modules/img/alg/src/transcendentals.hh index 27f51c816..84de4bd38 100644 --- a/modules/img/alg/src/transcendentals.hh +++ b/modules/img/alg/src/transcendentals.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/transform.hh b/modules/img/alg/src/transform.hh index 9f5665daf..e2603bd6e 100644 --- a/modules/img/alg/src/transform.hh +++ b/modules/img/alg/src/transform.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/transform_fw.hh b/modules/img/alg/src/transform_fw.hh index fe10c3edb..b4c780402 100644 --- a/modules/img/alg/src/transform_fw.hh +++ b/modules/img/alg/src/transform_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/transformation_base.cc b/modules/img/alg/src/transformation_base.cc index ccd1ac9d1..2aa29ed4f 100644 --- a/modules/img/alg/src/transformation_base.cc +++ b/modules/img/alg/src/transformation_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/transformation_base.hh b/modules/img/alg/src/transformation_base.hh index 4ddc8480f..3adf0c1ba 100644 --- a/modules/img/alg/src/transformation_base.hh +++ b/modules/img/alg/src/transformation_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/transformations.cc b/modules/img/alg/src/transformations.cc index 8275ca0d8..a99805445 100644 --- a/modules/img/alg/src/transformations.cc +++ b/modules/img/alg/src/transformations.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/src/transformations.hh b/modules/img/alg/src/transformations.hh index 937bbbb45..83c17ed7e 100644 --- a/modules/img/alg/src/transformations.hh +++ b/modules/img/alg/src/transformations.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/test_clear.cc b/modules/img/alg/tests/test_clear.cc index f70ad0e60..8a2fed0b8 100644 --- a/modules/img/alg/tests/test_clear.cc +++ b/modules/img/alg/tests/test_clear.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/test_conj.cc b/modules/img/alg/tests/test_conj.cc index 818a7ddae..d5df2f79c 100644 --- a/modules/img/alg/tests/test_conj.cc +++ b/modules/img/alg/tests/test_conj.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/test_convolute.cc b/modules/img/alg/tests/test_convolute.cc index b43d2a0e4..6ed68a277 100644 --- a/modules/img/alg/tests/test_convolute.cc +++ b/modules/img/alg/tests/test_convolute.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/test_discrete_shrink.cc b/modules/img/alg/tests/test_discrete_shrink.cc index 337a15736..ce85c2d91 100644 --- a/modules/img/alg/tests/test_discrete_shrink.cc +++ b/modules/img/alg/tests/test_discrete_shrink.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/test_fft.cc b/modules/img/alg/tests/test_fft.cc index 19457aaa0..dd742e41e 100644 --- a/modules/img/alg/tests/test_fft.cc +++ b/modules/img/alg/tests/test_fft.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/test_fill.cc b/modules/img/alg/tests/test_fill.cc index 080be24fa..c476a32db 100644 --- a/modules/img/alg/tests/test_fill.cc +++ b/modules/img/alg/tests/test_fill.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/test_filter.cc b/modules/img/alg/tests/test_filter.cc index 400bc1bd4..af9ca66cd 100644 --- a/modules/img/alg/tests/test_filter.cc +++ b/modules/img/alg/tests/test_filter.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/test_histogram.cc b/modules/img/alg/tests/test_histogram.cc index bd563e572..98f323a21 100644 --- a/modules/img/alg/tests/test_histogram.cc +++ b/modules/img/alg/tests/test_histogram.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/test_mirror.cc b/modules/img/alg/tests/test_mirror.cc index cc45d6b7b..ed6a9ff42 100644 --- a/modules/img/alg/tests/test_mirror.cc +++ b/modules/img/alg/tests/test_mirror.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/test_negate.cc b/modules/img/alg/tests/test_negate.cc index 6c6a7be38..fe0546004 100644 --- a/modules/img/alg/tests/test_negate.cc +++ b/modules/img/alg/tests/test_negate.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/test_power_spectrum.cc b/modules/img/alg/tests/test_power_spectrum.cc index 46137342f..21108200d 100644 --- a/modules/img/alg/tests/test_power_spectrum.cc +++ b/modules/img/alg/tests/test_power_spectrum.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/test_shift.cc b/modules/img/alg/tests/test_shift.cc index 8b2938c4e..70a51626e 100644 --- a/modules/img/alg/tests/test_shift.cc +++ b/modules/img/alg/tests/test_shift.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/test_stat.cc b/modules/img/alg/tests/test_stat.cc index c96c3abde..b34689ec9 100644 --- a/modules/img/alg/tests/test_stat.cc +++ b/modules/img/alg/tests/test_stat.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/test_transform.cc b/modules/img/alg/tests/test_transform.cc index 7ebf9b0a3..2721c3369 100644 --- a/modules/img/alg/tests/test_transform.cc +++ b/modules/img/alg/tests/test_transform.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/test_utils.hh b/modules/img/alg/tests/test_utils.hh index 26687e164..1f4987cb4 100644 --- a/modules/img/alg/tests/test_utils.hh +++ b/modules/img/alg/tests/test_utils.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/tests.cc b/modules/img/alg/tests/tests.cc index 096f981cd..0a4ae6cec 100644 --- a/modules/img/alg/tests/tests.cc +++ b/modules/img/alg/tests/tests.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/alg/tests/tests.hh b/modules/img/alg/tests/tests.hh index 97b66c8a9..698e7a515 100644 --- a/modules/img/alg/tests/tests.hh +++ b/modules/img/alg/tests/tests.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/pymod/__init__.py b/modules/img/base/pymod/__init__.py index 488406e2d..61f293be7 100644 --- a/modules/img/base/pymod/__init__.py +++ b/modules/img/base/pymod/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/img/base/pymod/export_data.cc b/modules/img/base/pymod/export_data.cc index b9f2cf3c1..886613d86 100644 --- a/modules/img/base/pymod/export_data.cc +++ b/modules/img/base/pymod/export_data.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/pymod/export_data_algorithm.cc b/modules/img/base/pymod/export_data_algorithm.cc index fc4c743d5..f1f8056c5 100644 --- a/modules/img/base/pymod/export_data_algorithm.cc +++ b/modules/img/base/pymod/export_data_algorithm.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/pymod/export_extent.cc b/modules/img/base/pymod/export_extent.cc index fb82c5ee1..421fa2f89 100644 --- a/modules/img/base/pymod/export_extent.cc +++ b/modules/img/base/pymod/export_extent.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/pymod/export_function.cc b/modules/img/base/pymod/export_function.cc index 3ff6fba48..266057439 100644 --- a/modules/img/base/pymod/export_function.cc +++ b/modules/img/base/pymod/export_function.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/pymod/export_image_handle.cc b/modules/img/base/pymod/export_image_handle.cc index 379a4cde2..3d3a84af7 100644 --- a/modules/img/base/pymod/export_image_handle.cc +++ b/modules/img/base/pymod/export_image_handle.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/pymod/export_image_list.cc b/modules/img/base/pymod/export_image_list.cc index 6c06f7174..e97b34bff 100644 --- a/modules/img/base/pymod/export_image_list.cc +++ b/modules/img/base/pymod/export_image_list.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/pymod/export_map.cc b/modules/img/base/pymod/export_map.cc index eea108c52..f7b46a93d 100644 --- a/modules/img/base/pymod/export_map.cc +++ b/modules/img/base/pymod/export_map.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/pymod/export_mask.cc b/modules/img/base/pymod/export_mask.cc index 3385d8ffc..3a5faacf8 100644 --- a/modules/img/base/pymod/export_mask.cc +++ b/modules/img/base/pymod/export_mask.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/pymod/export_peak.cc b/modules/img/base/pymod/export_peak.cc index 644f0baf9..540745ca5 100644 --- a/modules/img/base/pymod/export_peak.cc +++ b/modules/img/base/pymod/export_peak.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/pymod/export_phase.cc b/modules/img/base/pymod/export_phase.cc index d4e9b13c9..147f22c92 100644 --- a/modules/img/base/pymod/export_phase.cc +++ b/modules/img/base/pymod/export_phase.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/pymod/export_point.cc b/modules/img/base/pymod/export_point.cc index 121e0a296..27179b3e4 100644 --- a/modules/img/base/pymod/export_point.cc +++ b/modules/img/base/pymod/export_point.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/pymod/export_progress.cc b/modules/img/base/pymod/export_progress.cc index 7a15c854c..ecb187e81 100644 --- a/modules/img/base/pymod/export_progress.cc +++ b/modules/img/base/pymod/export_progress.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/pymod/export_raster_image.cc b/modules/img/base/pymod/export_raster_image.cc index 4021348c7..0c4604767 100644 --- a/modules/img/base/pymod/export_raster_image.cc +++ b/modules/img/base/pymod/export_raster_image.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/pymod/export_size.cc b/modules/img/base/pymod/export_size.cc index 7827faa8f..8206e36a7 100644 --- a/modules/img/base/pymod/export_size.cc +++ b/modules/img/base/pymod/export_size.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/pymod/wrap_extent_iterator.hh b/modules/img/base/pymod/wrap_extent_iterator.hh index 309d330c2..fb782d513 100644 --- a/modules/img/base/pymod/wrap_extent_iterator.hh +++ b/modules/img/base/pymod/wrap_extent_iterator.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/pymod/wrap_img.cc b/modules/img/base/pymod/wrap_img.cc index e98a15853..a959fd14a 100644 --- a/modules/img/base/pymod/wrap_img.cc +++ b/modules/img/base/pymod/wrap_img.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/algorithm.hh b/modules/img/base/src/algorithm.hh index 8e36c9f21..68f9cec6f 100644 --- a/modules/img/base/src/algorithm.hh +++ b/modules/img/base/src/algorithm.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/base.hh b/modules/img/base/src/base.hh index 15ec8ce1e..0122a0737 100644 --- a/modules/img/base/src/base.hh +++ b/modules/img/base/src/base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/circle_mask.cc b/modules/img/base/src/circle_mask.cc index bc685c16d..501177b93 100644 --- a/modules/img/base/src/circle_mask.cc +++ b/modules/img/base/src/circle_mask.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/circle_mask.hh b/modules/img/base/src/circle_mask.hh index 279fc1803..922920079 100644 --- a/modules/img/base/src/circle_mask.hh +++ b/modules/img/base/src/circle_mask.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/composite_mask.cc b/modules/img/base/src/composite_mask.cc index 4e455258f..97591d272 100644 --- a/modules/img/base/src/composite_mask.cc +++ b/modules/img/base/src/composite_mask.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/composite_mask.hh b/modules/img/base/src/composite_mask.hh index 8c71381f0..64d04fd13 100644 --- a/modules/img/base/src/composite_mask.hh +++ b/modules/img/base/src/composite_mask.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/data.cc b/modules/img/base/src/data.cc index 9745bf83c..47c00ba80 100644 --- a/modules/img/base/src/data.cc +++ b/modules/img/base/src/data.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/data.hh b/modules/img/base/src/data.hh index 7031c314a..fc2401b07 100644 --- a/modules/img/base/src/data.hh +++ b/modules/img/base/src/data.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/data_algorithm.cc b/modules/img/base/src/data_algorithm.cc index b4b3c1632..cb581c5f6 100644 --- a/modules/img/base/src/data_algorithm.cc +++ b/modules/img/base/src/data_algorithm.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/data_algorithm.hh b/modules/img/base/src/data_algorithm.hh index 8445b21b1..1cc85d343 100644 --- a/modules/img/base/src/data_algorithm.hh +++ b/modules/img/base/src/data_algorithm.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/data_observer.cc b/modules/img/base/src/data_observer.cc index 978274e01..804056db4 100644 --- a/modules/img/base/src/data_observer.cc +++ b/modules/img/base/src/data_observer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/data_observer.hh b/modules/img/base/src/data_observer.hh index 0d5feca72..c99e2f585 100644 --- a/modules/img/base/src/data_observer.hh +++ b/modules/img/base/src/data_observer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/data_types.hh b/modules/img/base/src/data_types.hh index e7fd81c4e..234cfaade 100644 --- a/modules/img/base/src/data_types.hh +++ b/modules/img/base/src/data_types.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/debug.hh b/modules/img/base/src/debug.hh index dd980cd0b..13b90f4d3 100644 --- a/modules/img/base/src/debug.hh +++ b/modules/img/base/src/debug.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/dllexport.hh b/modules/img/base/src/dllexport.hh index 3798103c5..3f32d13d8 100644 --- a/modules/img/base/src/dllexport.hh +++ b/modules/img/base/src/dllexport.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/extent.cc b/modules/img/base/src/extent.cc index 0bd3b7085..fda62d29e 100644 --- a/modules/img/base/src/extent.cc +++ b/modules/img/base/src/extent.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/extent.hh b/modules/img/base/src/extent.hh index 362dc4945..aab21e27b 100644 --- a/modules/img/base/src/extent.hh +++ b/modules/img/base/src/extent.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/extent_iterator.cc b/modules/img/base/src/extent_iterator.cc index d05e155d1..238b680b8 100644 --- a/modules/img/base/src/extent_iterator.cc +++ b/modules/img/base/src/extent_iterator.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/extent_iterator.hh b/modules/img/base/src/extent_iterator.hh index 26365e408..56b2f68b9 100644 --- a/modules/img/base/src/extent_iterator.hh +++ b/modules/img/base/src/extent_iterator.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/extent_mask.cc b/modules/img/base/src/extent_mask.cc index 22e2c607f..955195962 100644 --- a/modules/img/base/src/extent_mask.cc +++ b/modules/img/base/src/extent_mask.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/extent_mask.hh b/modules/img/base/src/extent_mask.hh index c8bd9f933..bbc17548c 100644 --- a/modules/img/base/src/extent_mask.hh +++ b/modules/img/base/src/extent_mask.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/function.hh b/modules/img/base/src/function.hh index 5537e7051..2961df320 100644 --- a/modules/img/base/src/function.hh +++ b/modules/img/base/src/function.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/function_base.cc b/modules/img/base/src/function_base.cc index 6531bf70b..7c3672159 100644 --- a/modules/img/base/src/function_base.cc +++ b/modules/img/base/src/function_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/function_base.hh b/modules/img/base/src/function_base.hh index 6360ac36b..05fe24e73 100644 --- a/modules/img/base/src/function_base.hh +++ b/modules/img/base/src/function_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/function_fw.hh b/modules/img/base/src/function_fw.hh index df183d2dc..17473cf94 100644 --- a/modules/img/base/src/function_fw.hh +++ b/modules/img/base/src/function_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/function_impl.cc b/modules/img/base/src/function_impl.cc index 2d8cb01d4..47cb88348 100644 --- a/modules/img/base/src/function_impl.cc +++ b/modules/img/base/src/function_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/function_impl.hh b/modules/img/base/src/function_impl.hh index 553b215d5..8283b57df 100644 --- a/modules/img/base/src/function_impl.hh +++ b/modules/img/base/src/function_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image.hh b/modules/img/base/src/image.hh index 8b31ce8cb..dba4fd758 100644 --- a/modules/img/base/src/image.hh +++ b/modules/img/base/src/image.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_factory.cc b/modules/img/base/src/image_factory.cc index d8470acf6..bf8fe59d8 100644 --- a/modules/img/base/src/image_factory.cc +++ b/modules/img/base/src/image_factory.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_factory.hh b/modules/img/base/src/image_factory.hh index 6f7862a97..82b5569dc 100644 --- a/modules/img/base/src/image_factory.hh +++ b/modules/img/base/src/image_factory.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_fw.hh b/modules/img/base/src/image_fw.hh index 3c528e89d..03b877c11 100644 --- a/modules/img/base/src/image_fw.hh +++ b/modules/img/base/src/image_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_handle.cc b/modules/img/base/src/image_handle.cc index 3490869b5..92234663c 100644 --- a/modules/img/base/src/image_handle.cc +++ b/modules/img/base/src/image_handle.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_handle.hh b/modules/img/base/src/image_handle.hh index ef0493487..4acf4e271 100644 --- a/modules/img/base/src/image_handle.hh +++ b/modules/img/base/src/image_handle.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_handle_fw.hh b/modules/img/base/src/image_handle_fw.hh index 810e921ee..f91784055 100644 --- a/modules/img/base/src/image_handle_fw.hh +++ b/modules/img/base/src/image_handle_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_impl.cc b/modules/img/base/src/image_impl.cc index e9280ba48..6feb304b1 100644 --- a/modules/img/base/src/image_impl.cc +++ b/modules/img/base/src/image_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_impl.hh b/modules/img/base/src/image_impl.hh index 6748728c2..3b885a0fb 100644 --- a/modules/img/base/src/image_impl.hh +++ b/modules/img/base/src/image_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_list.cc b/modules/img/base/src/image_list.cc index ce894a031..27c47423b 100644 --- a/modules/img/base/src/image_list.cc +++ b/modules/img/base/src/image_list.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_list.hh b/modules/img/base/src/image_list.hh index c49a32844..70fd1ca47 100644 --- a/modules/img/base/src/image_list.hh +++ b/modules/img/base/src/image_list.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state.hh b/modules/img/base/src/image_state.hh index a6d4a0d5a..6a519b9bf 100644 --- a/modules/img/base/src/image_state.hh +++ b/modules/img/base/src/image_state.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/binop.cc b/modules/img/base/src/image_state/binop.cc index 53521ed7f..16ff05ea2 100644 --- a/modules/img/base/src/image_state/binop.cc +++ b/modules/img/base/src/image_state/binop.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/binop.hh b/modules/img/base/src/image_state/binop.hh index c3d2d3e5d..68fdc3bef 100644 --- a/modules/img/base/src/image_state/binop.hh +++ b/modules/img/base/src/image_state/binop.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/dispatch.hh b/modules/img/base/src/image_state/dispatch.hh index 758494bec..c0dd86303 100644 --- a/modules/img/base/src/image_state/dispatch.hh +++ b/modules/img/base/src/image_state/dispatch.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/dispatch_fw.hh b/modules/img/base/src/image_state/dispatch_fw.hh index ef5b5eb06..2d9ca733c 100644 --- a/modules/img/base/src/image_state/dispatch_fw.hh +++ b/modules/img/base/src/image_state/dispatch_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state.hh b/modules/img/base/src/image_state/image_state.hh index 7354ad28d..28dab6fdf 100644 --- a/modules/img/base/src/image_state/image_state.hh +++ b/modules/img/base/src/image_state/image_state.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_algorithm.cc b/modules/img/base/src/image_state/image_state_algorithm.cc index afaa2e7e4..12da6444f 100644 --- a/modules/img/base/src/image_state/image_state_algorithm.cc +++ b/modules/img/base/src/image_state/image_state_algorithm.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_algorithm.hh b/modules/img/base/src/image_state/image_state_algorithm.hh index 9717dbf1c..b60134519 100644 --- a/modules/img/base/src/image_state/image_state_algorithm.hh +++ b/modules/img/base/src/image_state/image_state_algorithm.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_base.cc b/modules/img/base/src/image_state/image_state_base.cc index 11a6eab2e..15108e258 100644 --- a/modules/img/base/src/image_state/image_state_base.cc +++ b/modules/img/base/src/image_state/image_state_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_base.hh b/modules/img/base/src/image_state/image_state_base.hh index 56f6194fd..016fab63a 100644 --- a/modules/img/base/src/image_state/image_state_base.hh +++ b/modules/img/base/src/image_state/image_state_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_base_fw.hh b/modules/img/base/src/image_state/image_state_base_fw.hh index e0585ffd6..d32edb98d 100644 --- a/modules/img/base/src/image_state/image_state_base_fw.hh +++ b/modules/img/base/src/image_state/image_state_base_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_def.hh b/modules/img/base/src/image_state/image_state_def.hh index b4f44921e..0749e4be2 100644 --- a/modules/img/base/src/image_state/image_state_def.hh +++ b/modules/img/base/src/image_state/image_state_def.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_factory.cc b/modules/img/base/src/image_state/image_state_factory.cc index 52765af20..32d00ed40 100644 --- a/modules/img/base/src/image_state/image_state_factory.cc +++ b/modules/img/base/src/image_state/image_state_factory.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_factory.hh b/modules/img/base/src/image_state/image_state_factory.hh index 3a72f34fd..67e729574 100644 --- a/modules/img/base/src/image_state/image_state_factory.hh +++ b/modules/img/base/src/image_state/image_state_factory.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_fft.cc b/modules/img/base/src/image_state/image_state_fft.cc index 44bfc29e2..37120dd31 100644 --- a/modules/img/base/src/image_state/image_state_fft.cc +++ b/modules/img/base/src/image_state/image_state_fft.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_fft.hh b/modules/img/base/src/image_state/image_state_fft.hh index b86518c33..50ef49fed 100644 --- a/modules/img/base/src/image_state/image_state_fft.hh +++ b/modules/img/base/src/image_state/image_state_fft.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_frequency_domain.hh b/modules/img/base/src/image_state/image_state_frequency_domain.hh index 29fdc3909..0b5e4e601 100644 --- a/modules/img/base/src/image_state/image_state_frequency_domain.hh +++ b/modules/img/base/src/image_state/image_state_frequency_domain.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_fw.hh b/modules/img/base/src/image_state/image_state_fw.hh index c1eb67f60..3783caec5 100644 --- a/modules/img/base/src/image_state/image_state_fw.hh +++ b/modules/img/base/src/image_state/image_state_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_half_frequency_domain.hh b/modules/img/base/src/image_state/image_state_half_frequency_domain.hh index 29fb044e3..2726358d6 100644 --- a/modules/img/base/src/image_state/image_state_half_frequency_domain.hh +++ b/modules/img/base/src/image_state/image_state_half_frequency_domain.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_impl.cc b/modules/img/base/src/image_state/image_state_impl.cc index ca8834fe8..fbef8e2e6 100644 --- a/modules/img/base/src/image_state/image_state_impl.cc +++ b/modules/img/base/src/image_state/image_state_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_impl.hh b/modules/img/base/src/image_state/image_state_impl.hh index 06cc44659..62e6895cf 100644 --- a/modules/img/base/src/image_state/image_state_impl.hh +++ b/modules/img/base/src/image_state/image_state_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_inst.hh b/modules/img/base/src/image_state/image_state_inst.hh index 216d7219d..93c874348 100644 --- a/modules/img/base/src/image_state/image_state_inst.hh +++ b/modules/img/base/src/image_state/image_state_inst.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_spatial_domain.hh b/modules/img/base/src/image_state/image_state_spatial_domain.hh index 822f393a0..5d5e88325 100644 --- a/modules/img/base/src/image_state/image_state_spatial_domain.hh +++ b/modules/img/base/src/image_state/image_state_spatial_domain.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_visitor.hh b/modules/img/base/src/image_state/image_state_visitor.hh index 7b5d35ab1..d1808be7b 100644 --- a/modules/img/base/src/image_state/image_state_visitor.hh +++ b/modules/img/base/src/image_state/image_state_visitor.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/image_state_visitor_fw.hh b/modules/img/base/src/image_state/image_state_visitor_fw.hh index 5e8a25124..a83820aa1 100644 --- a/modules/img/base/src/image_state/image_state_visitor_fw.hh +++ b/modules/img/base/src/image_state/image_state_visitor_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/index.cc b/modules/img/base/src/image_state/index.cc index 96016959b..b0d27c138 100644 --- a/modules/img/base/src/image_state/index.cc +++ b/modules/img/base/src/image_state/index.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/index.hh b/modules/img/base/src/image_state/index.hh index 6133adae5..a3631d67e 100644 --- a/modules/img/base/src/image_state/index.hh +++ b/modules/img/base/src/image_state/index.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/test_inst.cc b/modules/img/base/src/image_state/test_inst.cc index 9b49c7c6f..37a3cbd90 100644 --- a/modules/img/base/src/image_state/test_inst.cc +++ b/modules/img/base/src/image_state/test_inst.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/type_fw.hh b/modules/img/base/src/image_state/type_fw.hh index ace905046..2e59892bd 100644 --- a/modules/img/base/src/image_state/type_fw.hh +++ b/modules/img/base/src/image_state/type_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/value_holder.cc b/modules/img/base/src/image_state/value_holder.cc index c9245e423..ed320e28e 100644 --- a/modules/img/base/src/image_state/value_holder.cc +++ b/modules/img/base/src/image_state/value_holder.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state/value_holder.hh b/modules/img/base/src/image_state/value_holder.hh index 57fb4b075..e0692f20a 100644 --- a/modules/img/base/src/image_state/value_holder.hh +++ b/modules/img/base/src/image_state/value_holder.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/image_state_fw.hh b/modules/img/base/src/image_state_fw.hh index 849427159..12be417ee 100644 --- a/modules/img/base/src/image_state_fw.hh +++ b/modules/img/base/src/image_state_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/inverted_mask.cc b/modules/img/base/src/inverted_mask.cc index b7ca5c9d3..b38bfe57f 100644 --- a/modules/img/base/src/inverted_mask.cc +++ b/modules/img/base/src/inverted_mask.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/inverted_mask.hh b/modules/img/base/src/inverted_mask.hh index 5cea56762..a4dfd4774 100644 --- a/modules/img/base/src/inverted_mask.hh +++ b/modules/img/base/src/inverted_mask.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/map.cc b/modules/img/base/src/map.cc index 899272a5e..8f1a0a087 100644 --- a/modules/img/base/src/map.cc +++ b/modules/img/base/src/map.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/img/base/src/map.hh b/modules/img/base/src/map.hh index c7ecd816f..231a4d1d1 100644 --- a/modules/img/base/src/map.hh +++ b/modules/img/base/src/map.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/img/base/src/mask.cc b/modules/img/base/src/mask.cc index 0151f3dcc..feb22bacb 100644 --- a/modules/img/base/src/mask.cc +++ b/modules/img/base/src/mask.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/mask.hh b/modules/img/base/src/mask.hh index a3bea792e..6d96125c2 100644 --- a/modules/img/base/src/mask.hh +++ b/modules/img/base/src/mask.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/mask_base.cc b/modules/img/base/src/mask_base.cc index f378d98f8..5f26dc729 100644 --- a/modules/img/base/src/mask_base.cc +++ b/modules/img/base/src/mask_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/mask_base.hh b/modules/img/base/src/mask_base.hh index ed058701a..4cd5287ea 100644 --- a/modules/img/base/src/mask_base.hh +++ b/modules/img/base/src/mask_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/mask_base_fw.hh b/modules/img/base/src/mask_base_fw.hh index 3e6dd0305..cf3879f87 100644 --- a/modules/img/base/src/mask_base_fw.hh +++ b/modules/img/base/src/mask_base_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/mask_info_convert.cc b/modules/img/base/src/mask_info_convert.cc index de40f80a4..847c47d80 100644 --- a/modules/img/base/src/mask_info_convert.cc +++ b/modules/img/base/src/mask_info_convert.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/mask_info_convert.hh b/modules/img/base/src/mask_info_convert.hh index 04a01eac4..f25b37a22 100644 --- a/modules/img/base/src/mask_info_convert.hh +++ b/modules/img/base/src/mask_info_convert.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/mask_op.cc b/modules/img/base/src/mask_op.cc index 048998ba6..434f2abb6 100644 --- a/modules/img/base/src/mask_op.cc +++ b/modules/img/base/src/mask_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/mask_op.hh b/modules/img/base/src/mask_op.hh index ed6aa77eb..5de7c61e4 100644 --- a/modules/img/base/src/mask_op.hh +++ b/modules/img/base/src/mask_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/mask_visitor.hh b/modules/img/base/src/mask_visitor.hh index cc954ea78..76f6ad8f1 100644 --- a/modules/img/base/src/mask_visitor.hh +++ b/modules/img/base/src/mask_visitor.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/module_config.hh b/modules/img/base/src/module_config.hh index ad9f913a3..0387491ff 100644 --- a/modules/img/base/src/module_config.hh +++ b/modules/img/base/src/module_config.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/img/base/src/normalizer_fw.hh b/modules/img/base/src/normalizer_fw.hh index 75b9af8d9..e602ede1b 100644 --- a/modules/img/base/src/normalizer_fw.hh +++ b/modules/img/base/src/normalizer_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/normalizer_impl.hh b/modules/img/base/src/normalizer_impl.hh index 838875cdd..0a68b3851 100644 --- a/modules/img/base/src/normalizer_impl.hh +++ b/modules/img/base/src/normalizer_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/null_data.hh b/modules/img/base/src/null_data.hh index fff15d6f4..3a2d3a864 100644 --- a/modules/img/base/src/null_data.hh +++ b/modules/img/base/src/null_data.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/null_function.hh b/modules/img/base/src/null_function.hh index 232438243..d21613b06 100644 --- a/modules/img/base/src/null_function.hh +++ b/modules/img/base/src/null_function.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/observable.hh b/modules/img/base/src/observable.hh index 831d1c8ea..90da00db1 100644 --- a/modules/img/base/src/observable.hh +++ b/modules/img/base/src/observable.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/paste_impl.cc b/modules/img/base/src/paste_impl.cc index 90d12a9ee..848cc7c5e 100644 --- a/modules/img/base/src/paste_impl.cc +++ b/modules/img/base/src/paste_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/paste_impl.hh b/modules/img/base/src/paste_impl.hh index 689f9a59f..70e483cd5 100644 --- a/modules/img/base/src/paste_impl.hh +++ b/modules/img/base/src/paste_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/peak.cc b/modules/img/base/src/peak.cc index 3620328df..329bd9c7c 100644 --- a/modules/img/base/src/peak.cc +++ b/modules/img/base/src/peak.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/peak.hh b/modules/img/base/src/peak.hh index a58c467bf..fd1131ec6 100644 --- a/modules/img/base/src/peak.hh +++ b/modules/img/base/src/peak.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/phase.cc b/modules/img/base/src/phase.cc index 190b96da5..b50eab440 100644 --- a/modules/img/base/src/phase.cc +++ b/modules/img/base/src/phase.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/phase.hh b/modules/img/base/src/phase.hh index 0c4d49acb..73bb6a409 100644 --- a/modules/img/base/src/phase.hh +++ b/modules/img/base/src/phase.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/physical_units.cc b/modules/img/base/src/physical_units.cc index a81b3b3f8..01d0f22cd 100644 --- a/modules/img/base/src/physical_units.cc +++ b/modules/img/base/src/physical_units.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/physical_units.hh b/modules/img/base/src/physical_units.hh index f2e5ca615..caf0fdda2 100644 --- a/modules/img/base/src/physical_units.hh +++ b/modules/img/base/src/physical_units.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/pixel_sampling.cc b/modules/img/base/src/pixel_sampling.cc index 0ba2c608d..2c790e421 100644 --- a/modules/img/base/src/pixel_sampling.cc +++ b/modules/img/base/src/pixel_sampling.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/pixel_sampling.hh b/modules/img/base/src/pixel_sampling.hh index 05882f365..731875450 100644 --- a/modules/img/base/src/pixel_sampling.hh +++ b/modules/img/base/src/pixel_sampling.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/point.cc b/modules/img/base/src/point.cc index 030600855..80ac131f9 100644 --- a/modules/img/base/src/point.cc +++ b/modules/img/base/src/point.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/point.hh b/modules/img/base/src/point.hh index abbd8a903..bc2a161e8 100644 --- a/modules/img/base/src/point.hh +++ b/modules/img/base/src/point.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/point_list.cc b/modules/img/base/src/point_list.cc index 922f78c20..559f787b6 100644 --- a/modules/img/base/src/point_list.cc +++ b/modules/img/base/src/point_list.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/point_list.hh b/modules/img/base/src/point_list.hh index a2065d9d1..ca287cb88 100644 --- a/modules/img/base/src/point_list.hh +++ b/modules/img/base/src/point_list.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/polygon_mask.cc b/modules/img/base/src/polygon_mask.cc index d1ed6c35b..72b9be47e 100644 --- a/modules/img/base/src/polygon_mask.cc +++ b/modules/img/base/src/polygon_mask.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/polygon_mask.hh b/modules/img/base/src/polygon_mask.hh index 033e82d1a..8b8d6827f 100644 --- a/modules/img/base/src/polygon_mask.hh +++ b/modules/img/base/src/polygon_mask.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/progress.cc b/modules/img/base/src/progress.cc index 7b6ee5ed7..380f93ea1 100644 --- a/modules/img/base/src/progress.cc +++ b/modules/img/base/src/progress.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/progress.hh b/modules/img/base/src/progress.hh index 897ed365e..fa5e2f9e2 100644 --- a/modules/img/base/src/progress.hh +++ b/modules/img/base/src/progress.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/raster_image/raster_image.cc b/modules/img/base/src/raster_image/raster_image.cc index cdf17a34b..20856e19f 100644 --- a/modules/img/base/src/raster_image/raster_image.cc +++ b/modules/img/base/src/raster_image/raster_image.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/raster_image/raster_image.hh b/modules/img/base/src/raster_image/raster_image.hh index 8840d742d..f27ad4c2a 100644 --- a/modules/img/base/src/raster_image/raster_image.hh +++ b/modules/img/base/src/raster_image/raster_image.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/size.cc b/modules/img/base/src/size.cc index 197b18d03..e8c0ed1b8 100644 --- a/modules/img/base/src/size.cc +++ b/modules/img/base/src/size.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/size.hh b/modules/img/base/src/size.hh index 1ae38ce9d..e648d11f2 100644 --- a/modules/img/base/src/size.hh +++ b/modules/img/base/src/size.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/spherical_mask.cc b/modules/img/base/src/spherical_mask.cc index b43508def..26258de74 100644 --- a/modules/img/base/src/spherical_mask.cc +++ b/modules/img/base/src/spherical_mask.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/spherical_mask.hh b/modules/img/base/src/spherical_mask.hh index ec532271c..fae8e0183 100644 --- a/modules/img/base/src/spherical_mask.hh +++ b/modules/img/base/src/spherical_mask.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/util.cc b/modules/img/base/src/util.cc index 2aa4955d8..bbe25ac0c 100644 --- a/modules/img/base/src/util.cc +++ b/modules/img/base/src/util.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/util.hh b/modules/img/base/src/util.hh index adf577b6a..8436553fc 100644 --- a/modules/img/base/src/util.hh +++ b/modules/img/base/src/util.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/value_util.hh b/modules/img/base/src/value_util.hh index 44247eda7..045ccf97f 100644 --- a/modules/img/base/src/value_util.hh +++ b/modules/img/base/src/value_util.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/src/vecmat.hh b/modules/img/base/src/vecmat.hh index d2c82ba90..92815608b 100644 --- a/modules/img/base/src/vecmat.hh +++ b/modules/img/base/src/vecmat.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/simple_test.cc b/modules/img/base/tests/simple_test.cc index e75e71fcf..fc6591133 100644 --- a/modules/img/base/tests/simple_test.cc +++ b/modules/img/base/tests/simple_test.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/single_test_image_handle_mem.cc b/modules/img/base/tests/single_test_image_handle_mem.cc index e0230934a..4ae6cb1b2 100644 --- a/modules/img/base/tests/single_test_image_handle_mem.cc +++ b/modules/img/base/tests/single_test_image_handle_mem.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_data.cc b/modules/img/base/tests/test_data.cc index 83faeabff..b9700fc81 100644 --- a/modules/img/base/tests/test_data.cc +++ b/modules/img/base/tests/test_data.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_data.hh b/modules/img/base/tests/test_data.hh index 34f80f1d8..cd87ed0e7 100644 --- a/modules/img/base/tests/test_data.hh +++ b/modules/img/base/tests/test_data.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_domains.cc b/modules/img/base/tests/test_domains.cc index 8a8d22935..4fdc4ad25 100644 --- a/modules/img/base/tests/test_domains.cc +++ b/modules/img/base/tests/test_domains.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_extent.cc b/modules/img/base/tests/test_extent.cc index 931bfb3e9..c6430782f 100644 --- a/modules/img/base/tests/test_extent.cc +++ b/modules/img/base/tests/test_extent.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_extent.hh b/modules/img/base/tests/test_extent.hh index 75eb950c4..2018095cc 100644 --- a/modules/img/base/tests/test_extent.hh +++ b/modules/img/base/tests/test_extent.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_function.cc b/modules/img/base/tests/test_function.cc index 8496575d1..d3cffa9b6 100644 --- a/modules/img/base/tests/test_function.cc +++ b/modules/img/base/tests/test_function.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_function.hh b/modules/img/base/tests/test_function.hh index c0c9f509c..f2e7353bf 100644 --- a/modules/img/base/tests/test_function.hh +++ b/modules/img/base/tests/test_function.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_image.cc b/modules/img/base/tests/test_image.cc index 2342cb11e..e04eba193 100644 --- a/modules/img/base/tests/test_image.cc +++ b/modules/img/base/tests/test_image.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_image.hh b/modules/img/base/tests/test_image.hh index a8119a975..9dcc187e3 100644 --- a/modules/img/base/tests/test_image.hh +++ b/modules/img/base/tests/test_image.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_image_factory.cc b/modules/img/base/tests/test_image_factory.cc index b7669284f..04554c580 100644 --- a/modules/img/base/tests/test_image_factory.cc +++ b/modules/img/base/tests/test_image_factory.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_image_factory.hh b/modules/img/base/tests/test_image_factory.hh index aeaffb84e..90109184a 100644 --- a/modules/img/base/tests/test_image_factory.hh +++ b/modules/img/base/tests/test_image_factory.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_image_impl.cc b/modules/img/base/tests/test_image_impl.cc index 5b4a1cbe8..07324c71c 100644 --- a/modules/img/base/tests/test_image_impl.cc +++ b/modules/img/base/tests/test_image_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_image_impl.hh b/modules/img/base/tests/test_image_impl.hh index 10effda5f..053a7ecfa 100644 --- a/modules/img/base/tests/test_image_impl.hh +++ b/modules/img/base/tests/test_image_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_image_state.cc b/modules/img/base/tests/test_image_state.cc index 553ff6dc9..47a290b7e 100644 --- a/modules/img/base/tests/test_image_state.cc +++ b/modules/img/base/tests/test_image_state.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_image_state.hh b/modules/img/base/tests/test_image_state.hh index 13735a9ad..0a8f99622 100644 --- a/modules/img/base/tests/test_image_state.hh +++ b/modules/img/base/tests/test_image_state.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_image_state_visitor.cc b/modules/img/base/tests/test_image_state_visitor.cc index 376fd4bda..a093c3efa 100644 --- a/modules/img/base/tests/test_image_state_visitor.cc +++ b/modules/img/base/tests/test_image_state_visitor.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_image_state_visitor.hh b/modules/img/base/tests/test_image_state_visitor.hh index a85f5130e..4ae162a7b 100644 --- a/modules/img/base/tests/test_image_state_visitor.hh +++ b/modules/img/base/tests/test_image_state_visitor.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_index.cc b/modules/img/base/tests/test_index.cc index b06a6740d..3fa1490c4 100644 --- a/modules/img/base/tests/test_index.cc +++ b/modules/img/base/tests/test_index.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_index.hh b/modules/img/base/tests/test_index.hh index 9c21122b2..dced5481d 100644 --- a/modules/img/base/tests/test_index.hh +++ b/modules/img/base/tests/test_index.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_point.cc b/modules/img/base/tests/test_point.cc index 67c35f68e..2a7891c32 100644 --- a/modules/img/base/tests/test_point.cc +++ b/modules/img/base/tests/test_point.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_point.hh b/modules/img/base/tests/test_point.hh index 6b790bc07..f7aca6252 100644 --- a/modules/img/base/tests/test_point.hh +++ b/modules/img/base/tests/test_point.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_sampling.cc b/modules/img/base/tests/test_sampling.cc index e273c3853..9da221259 100644 --- a/modules/img/base/tests/test_sampling.cc +++ b/modules/img/base/tests/test_sampling.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_sampling.hh b/modules/img/base/tests/test_sampling.hh index cb808f567..dea44e1d6 100644 --- a/modules/img/base/tests/test_sampling.hh +++ b/modules/img/base/tests/test_sampling.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_size.cc b/modules/img/base/tests/test_size.cc index 53a2bf7f7..6ad36ac83 100644 --- a/modules/img/base/tests/test_size.cc +++ b/modules/img/base/tests/test_size.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_size.hh b/modules/img/base/tests/test_size.hh index 61b456f29..9840cee0c 100644 --- a/modules/img/base/tests/test_size.hh +++ b/modules/img/base/tests/test_size.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_transform.hh b/modules/img/base/tests/test_transform.hh index 2569640d5..9f76073d4 100644 --- a/modules/img/base/tests/test_transform.hh +++ b/modules/img/base/tests/test_transform.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_utils.hh b/modules/img/base/tests/test_utils.hh index 47bfb6c01..b46b3d8f7 100644 --- a/modules/img/base/tests/test_utils.hh +++ b/modules/img/base/tests/test_utils.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_value_holder.cc b/modules/img/base/tests/test_value_holder.cc index 2b86e68ed..d859912dd 100644 --- a/modules/img/base/tests/test_value_holder.cc +++ b/modules/img/base/tests/test_value_holder.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/test_value_holder.hh b/modules/img/base/tests/test_value_holder.hh index ecf2d998d..ab1e6d879 100644 --- a/modules/img/base/tests/test_value_holder.hh +++ b/modules/img/base/tests/test_value_holder.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/img/base/tests/tests.cc b/modules/img/base/tests/tests.cc index b4f51634a..2027c8008 100644 --- a/modules/img/base/tests/tests.cc +++ b/modules/img/base/tests/tests.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/pymod/__init__.py b/modules/info/pymod/__init__.py index 8fb5d00fb..ee112a29a 100644 --- a/modules/info/pymod/__init__.py +++ b/modules/info/pymod/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/info/pymod/wrap_info.cc b/modules/info/pymod/wrap_info.cc index 0f80c9522..676e56f13 100644 --- a/modules/info/pymod/wrap_info.cc +++ b/modules/info/pymod/wrap_info.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/geom_info_conversion.cc b/modules/info/src/geom_info_conversion.cc index 852362017..8c7681be5 100644 --- a/modules/info/src/geom_info_conversion.cc +++ b/modules/info/src/geom_info_conversion.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/info/src/geom_info_conversion.hh b/modules/info/src/geom_info_conversion.hh index 08eae0051..cb06e05eb 100644 --- a/modules/info/src/geom_info_conversion.hh +++ b/modules/info/src/geom_info_conversion.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/info/src/info.hh b/modules/info/src/info.hh index 8c6091a7d..fdb365a7f 100644 --- a/modules/info/src/info.hh +++ b/modules/info/src/info.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_error.hh b/modules/info/src/info_error.hh index d6a374d51..6464cbb38 100644 --- a/modules/info/src/info_error.hh +++ b/modules/info/src/info_error.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_fw.hh b/modules/info/src/info_fw.hh index 1f08f3f58..2483d6487 100644 --- a/modules/info/src/info_fw.hh +++ b/modules/info/src/info_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_group.cc b/modules/info/src/info_group.cc index fcc6fb708..883c80d48 100644 --- a/modules/info/src/info_group.cc +++ b/modules/info/src/info_group.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_group.hh b/modules/info/src/info_group.hh index 6cb018d4f..5d703c6c5 100644 --- a/modules/info/src/info_group.hh +++ b/modules/info/src/info_group.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_handle.cc b/modules/info/src/info_handle.cc index ef690c0d3..9b6ecbc49 100644 --- a/modules/info/src/info_handle.cc +++ b/modules/info/src/info_handle.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_handle.hh b/modules/info/src/info_handle.hh index aa3a7f3ce..30aeda562 100644 --- a/modules/info/src/info_handle.hh +++ b/modules/info/src/info_handle.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_impl.cc b/modules/info/src/info_impl.cc index de1aeaa1f..7bc6d9cc3 100644 --- a/modules/info/src/info_impl.cc +++ b/modules/info/src/info_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_impl.hh b/modules/info/src/info_impl.hh index 6a9ab3426..62c0357b3 100644 --- a/modules/info/src/info_impl.hh +++ b/modules/info/src/info_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_impl_fw.hh b/modules/info/src/info_impl_fw.hh index 1f2ceb1b6..9e24085f0 100644 --- a/modules/info/src/info_impl_fw.hh +++ b/modules/info/src/info_impl_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_item.cc b/modules/info/src/info_item.cc index 8b65dd9a0..d08116b55 100644 --- a/modules/info/src/info_item.cc +++ b/modules/info/src/info_item.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_item.hh b/modules/info/src/info_item.hh index edfbda434..b32bee40b 100644 --- a/modules/info/src/info_item.hh +++ b/modules/info/src/info_item.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_path.cc b/modules/info/src/info_path.cc index 19393abe7..24e862d72 100644 --- a/modules/info/src/info_path.cc +++ b/modules/info/src/info_path.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_path.hh b/modules/info/src/info_path.hh index ad69b47cd..2cca7e5fd 100644 --- a/modules/info/src/info_path.hh +++ b/modules/info/src/info_path.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_set.cc b/modules/info/src/info_set.cc index 156efaede..9cfd9d6ac 100644 --- a/modules/info/src/info_set.cc +++ b/modules/info/src/info_set.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_set.hh b/modules/info/src/info_set.hh index 54562c975..fe8421a8f 100644 --- a/modules/info/src/info_set.hh +++ b/modules/info/src/info_set.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_verbose_visitor.cc b/modules/info/src/info_verbose_visitor.cc index 4f3cbd3b7..cf778aae9 100644 --- a/modules/info/src/info_verbose_visitor.cc +++ b/modules/info/src/info_verbose_visitor.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_verbose_visitor.hh b/modules/info/src/info_verbose_visitor.hh index 210b82d36..6e68fde8f 100644 --- a/modules/info/src/info_verbose_visitor.hh +++ b/modules/info/src/info_verbose_visitor.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_visitor.cc b/modules/info/src/info_visitor.cc index 2e902dc4d..164681270 100644 --- a/modules/info/src/info_visitor.cc +++ b/modules/info/src/info_visitor.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/info_visitor.hh b/modules/info/src/info_visitor.hh index f677546b8..2db767667 100644 --- a/modules/info/src/info_visitor.hh +++ b/modules/info/src/info_visitor.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/item_type.hh b/modules/info/src/item_type.hh index eee149006..132034406 100644 --- a/modules/info/src/item_type.hh +++ b/modules/info/src/item_type.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/item_type_cast.hh b/modules/info/src/item_type_cast.hh index 8d94ede50..33caf3867 100644 --- a/modules/info/src/item_type_cast.hh +++ b/modules/info/src/item_type_cast.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/info/src/module_config.hh b/modules/info/src/module_config.hh index 1a04ae34d..ec6c38ef1 100644 --- a/modules/info/src/module_config.hh +++ b/modules/info/src/module_config.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/pymod/__init__.py b/modules/io/pymod/__init__.py index e5f0a7834..5680024db 100644 --- a/modules/io/pymod/__init__.py +++ b/modules/io/pymod/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/io/pymod/export_map_io.cc b/modules/io/pymod/export_map_io.cc index e2b10e158..beb7601bc 100644 --- a/modules/io/pymod/export_map_io.cc +++ b/modules/io/pymod/export_map_io.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/pymod/export_pdb_io.cc b/modules/io/pymod/export_pdb_io.cc index c057534e0..f1f830428 100644 --- a/modules/io/pymod/export_pdb_io.cc +++ b/modules/io/pymod/export_pdb_io.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/pymod/wrap_io.cc b/modules/io/pymod/wrap_io.cc index 6eefe1728..a7fb82f7d 100644 --- a/modules/io/pymod/wrap_io.cc +++ b/modules/io/pymod/wrap_io.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/binary_data_sink.hh b/modules/io/src/binary_data_sink.hh index 269576b2c..3062fa1db 100644 --- a/modules/io/src/binary_data_sink.hh +++ b/modules/io/src/binary_data_sink.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/binary_data_source.hh b/modules/io/src/binary_data_source.hh index c18a1db66..f610f376d 100644 --- a/modules/io/src/binary_data_source.hh +++ b/modules/io/src/binary_data_source.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/container_serialization.hh b/modules/io/src/container_serialization.hh index 3c42f50c1..88cbb7e71 100644 --- a/modules/io/src/container_serialization.hh +++ b/modules/io/src/container_serialization.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/convert.cc b/modules/io/src/convert.cc index 8cc6a83ea..cc42070f0 100644 --- a/modules/io/src/convert.cc +++ b/modules/io/src/convert.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/convert.hh b/modules/io/src/convert.hh index 3c14687be..93c741e01 100644 --- a/modules/io/src/convert.hh +++ b/modules/io/src/convert.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/converting_streams.hh b/modules/io/src/converting_streams.hh index 356e4f47b..fb6b3b82d 100644 --- a/modules/io/src/converting_streams.hh +++ b/modules/io/src/converting_streams.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/img/image_format.hh b/modules/io/src/img/image_format.hh index 5b5e2a9be..a9d0ff9e0 100644 --- a/modules/io/src/img/image_format.hh +++ b/modules/io/src/img/image_format.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/image_format_conversion.cc b/modules/io/src/img/image_format_conversion.cc index 54c29bcb2..2fa3ddc99 100644 --- a/modules/io/src/img/image_format_conversion.cc +++ b/modules/io/src/img/image_format_conversion.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/image_io_plugin.hh b/modules/io/src/img/image_io_plugin.hh index aadbf0b9b..2700d4509 100644 --- a/modules/io/src/img/image_io_plugin.hh +++ b/modules/io/src/img/image_io_plugin.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/jpk_util.hh b/modules/io/src/img/jpk_util.hh index fab4a62d1..b0bcf89da 100644 --- a/modules/io/src/img/jpk_util.hh +++ b/modules/io/src/img/jpk_util.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // diff --git a/modules/io/src/img/load_map.cc b/modules/io/src/img/load_map.cc index c120c6e35..dfb61702b 100644 --- a/modules/io/src/img/load_map.cc +++ b/modules/io/src/img/load_map.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // diff --git a/modules/io/src/img/load_map.hh b/modules/io/src/img/load_map.hh index 30e0ec056..5f012919f 100644 --- a/modules/io/src/img/load_map.hh +++ b/modules/io/src/img/load_map.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_dat_handler.cc b/modules/io/src/img/map_io_dat_handler.cc index c2503261e..09d5e55fc 100644 --- a/modules/io/src/img/map_io_dat_handler.cc +++ b/modules/io/src/img/map_io_dat_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_dat_handler.hh b/modules/io/src/img/map_io_dat_handler.hh index 9244c705b..e1ba422e2 100644 --- a/modules/io/src/img/map_io_dat_handler.hh +++ b/modules/io/src/img/map_io_dat_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_df3_handler.cc b/modules/io/src/img/map_io_df3_handler.cc index b6f637eab..ac5d30c4f 100644 --- a/modules/io/src/img/map_io_df3_handler.cc +++ b/modules/io/src/img/map_io_df3_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_df3_handler.hh b/modules/io/src/img/map_io_df3_handler.hh index c6f3afd2f..b8bb21851 100644 --- a/modules/io/src/img/map_io_df3_handler.hh +++ b/modules/io/src/img/map_io_df3_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_dm3_handler.cc b/modules/io/src/img/map_io_dm3_handler.cc index 359d396f2..a5964527f 100644 --- a/modules/io/src/img/map_io_dm3_handler.cc +++ b/modules/io/src/img/map_io_dm3_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_dm3_handler.hh b/modules/io/src/img/map_io_dm3_handler.hh index e958de070..4b1ad827f 100644 --- a/modules/io/src/img/map_io_dm3_handler.hh +++ b/modules/io/src/img/map_io_dm3_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_dx_handler.cc b/modules/io/src/img/map_io_dx_handler.cc index 61b0a90e4..70303c97a 100644 --- a/modules/io/src/img/map_io_dx_handler.cc +++ b/modules/io/src/img/map_io_dx_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_dx_handler.hh b/modules/io/src/img/map_io_dx_handler.hh index 991c9b820..640862cdc 100644 --- a/modules/io/src/img/map_io_dx_handler.hh +++ b/modules/io/src/img/map_io_dx_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // diff --git a/modules/io/src/img/map_io_handler.hh b/modules/io/src/img/map_io_handler.hh index 1912b9c60..fe43f7878 100644 --- a/modules/io/src/img/map_io_handler.hh +++ b/modules/io/src/img/map_io_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_jpk_handler.cc b/modules/io/src/img/map_io_jpk_handler.cc index 8f778b3ac..609250349 100644 --- a/modules/io/src/img/map_io_jpk_handler.cc +++ b/modules/io/src/img/map_io_jpk_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_jpk_handler.hh b/modules/io/src/img/map_io_jpk_handler.hh index be93eb916..aeaf2c54e 100644 --- a/modules/io/src/img/map_io_jpk_handler.hh +++ b/modules/io/src/img/map_io_jpk_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_mrc_handler.cc b/modules/io/src/img/map_io_mrc_handler.cc index f5e5d1dc7..abdf2807b 100644 --- a/modules/io/src/img/map_io_mrc_handler.cc +++ b/modules/io/src/img/map_io_mrc_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_mrc_handler.hh b/modules/io/src/img/map_io_mrc_handler.hh index b73aaf56e..f1a14f93a 100644 --- a/modules/io/src/img/map_io_mrc_handler.hh +++ b/modules/io/src/img/map_io_mrc_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_nanoscope_handler.cc b/modules/io/src/img/map_io_nanoscope_handler.cc index 1ade5a6f0..64f7c17af 100644 --- a/modules/io/src/img/map_io_nanoscope_handler.cc +++ b/modules/io/src/img/map_io_nanoscope_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_nanoscope_handler.hh b/modules/io/src/img/map_io_nanoscope_handler.hh index 99a457a1a..177f48e7b 100644 --- a/modules/io/src/img/map_io_nanoscope_handler.hh +++ b/modules/io/src/img/map_io_nanoscope_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_png_handler.cc b/modules/io/src/img/map_io_png_handler.cc index 9107953aa..e16f12ed3 100644 --- a/modules/io/src/img/map_io_png_handler.cc +++ b/modules/io/src/img/map_io_png_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_png_handler.hh b/modules/io/src/img/map_io_png_handler.hh index 156d684d4..e7eb7957d 100644 --- a/modules/io/src/img/map_io_png_handler.hh +++ b/modules/io/src/img/map_io_png_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_situs_handler.cc b/modules/io/src/img/map_io_situs_handler.cc index 989c60d71..fcd28f709 100644 --- a/modules/io/src/img/map_io_situs_handler.cc +++ b/modules/io/src/img/map_io_situs_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_situs_handler.hh b/modules/io/src/img/map_io_situs_handler.hh index f3e3d6b78..b3a19cb79 100644 --- a/modules/io/src/img/map_io_situs_handler.hh +++ b/modules/io/src/img/map_io_situs_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_spi_handler.cc b/modules/io/src/img/map_io_spi_handler.cc index 85a68a978..33c539945 100644 --- a/modules/io/src/img/map_io_spi_handler.cc +++ b/modules/io/src/img/map_io_spi_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_spi_handler.hh b/modules/io/src/img/map_io_spi_handler.hh index f51093d4b..cf185731c 100644 --- a/modules/io/src/img/map_io_spi_handler.hh +++ b/modules/io/src/img/map_io_spi_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_tiff_handler.cc b/modules/io/src/img/map_io_tiff_handler.cc index b80256d0f..16c422baf 100644 --- a/modules/io/src/img/map_io_tiff_handler.cc +++ b/modules/io/src/img/map_io_tiff_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/map_io_tiff_handler.hh b/modules/io/src/img/map_io_tiff_handler.hh index 4fced4074..3ea310e85 100644 --- a/modules/io/src/img/map_io_tiff_handler.hh +++ b/modules/io/src/img/map_io_tiff_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/tiff_util.cc b/modules/io/src/img/tiff_util.cc index 0fa8e3186..925b6929d 100644 --- a/modules/io/src/img/tiff_util.cc +++ b/modules/io/src/img/tiff_util.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/img/tiff_util.hh b/modules/io/src/img/tiff_util.hh index 01c601861..66393291b 100644 --- a/modules/io/src/img/tiff_util.hh +++ b/modules/io/src/img/tiff_util.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // Copyright (C) 2003-2010 by the IPLT authors // // This library is free software; you can redistribute it and/or modify it under diff --git a/modules/io/src/io_exception.hh b/modules/io/src/io_exception.hh index d1e4782d9..782565d2c 100644 --- a/modules/io/src/io_exception.hh +++ b/modules/io/src/io_exception.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/io_manager.cc b/modules/io/src/io_manager.cc index c97938f90..7c274c080 100644 --- a/modules/io/src/io_manager.cc +++ b/modules/io/src/io_manager.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/io_manager.hh b/modules/io/src/io_manager.hh index cccc37575..a0ef542b2 100644 --- a/modules/io/src/io_manager.hh +++ b/modules/io/src/io_manager.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/io_utils.cc b/modules/io/src/io_utils.cc index 905c5545c..d47cc94fd 100644 --- a/modules/io/src/io_utils.cc +++ b/modules/io/src/io_utils.cc @@ -2,7 +2,7 @@ // This file is part of the OpenStructure project <www.openstructure.org> // // Copyright (C) 2003-2010 by the IPLT authors -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/io_utils.hh b/modules/io/src/io_utils.hh index 4f404444d..aafd33a79 100644 --- a/modules/io/src/io_utils.hh +++ b/modules/io/src/io_utils.hh @@ -2,7 +2,7 @@ // This file is part of the OpenStructure project <www.openstructure.org> // // Copyright (C) 2003-2010 by the IPLT authors -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/module_config.hh b/modules/io/src/module_config.hh index e3365b724..83f2f1a1b 100644 --- a/modules/io/src/module_config.hh +++ b/modules/io/src/module_config.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/chemdict_parser.hh b/modules/io/src/mol/chemdict_parser.hh index a76ae3c0c..9f36c693c 100644 --- a/modules/io/src/mol/chemdict_parser.hh +++ b/modules/io/src/mol/chemdict_parser.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/dcd_io.cc b/modules/io/src/mol/dcd_io.cc index 9a59b2dbb..3fdb02f55 100644 --- a/modules/io/src/mol/dcd_io.cc +++ b/modules/io/src/mol/dcd_io.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/dcd_io.hh b/modules/io/src/mol/dcd_io.hh index 217da0bf7..5915de6f1 100644 --- a/modules/io/src/mol/dcd_io.hh +++ b/modules/io/src/mol/dcd_io.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/entity_io_crd_handler.cc b/modules/io/src/mol/entity_io_crd_handler.cc index 9f646861c..bee473f9d 100644 --- a/modules/io/src/mol/entity_io_crd_handler.cc +++ b/modules/io/src/mol/entity_io_crd_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/entity_io_crd_handler.hh b/modules/io/src/mol/entity_io_crd_handler.hh index f32693025..d8758545d 100644 --- a/modules/io/src/mol/entity_io_crd_handler.hh +++ b/modules/io/src/mol/entity_io_crd_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/entity_io_handler.hh b/modules/io/src/mol/entity_io_handler.hh index c1a64703d..903c8f705 100644 --- a/modules/io/src/mol/entity_io_handler.hh +++ b/modules/io/src/mol/entity_io_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/entity_io_mae_handler.cc b/modules/io/src/mol/entity_io_mae_handler.cc index 0322c18cc..19c9e4067 100644 --- a/modules/io/src/mol/entity_io_mae_handler.cc +++ b/modules/io/src/mol/entity_io_mae_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/entity_io_mae_handler.hh b/modules/io/src/mol/entity_io_mae_handler.hh index 7a8c5729c..d464e5ab6 100644 --- a/modules/io/src/mol/entity_io_mae_handler.hh +++ b/modules/io/src/mol/entity_io_mae_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 @@ -84,7 +84,7 @@ mol::EntityHandle DLLEXPORT_OST_IO LoadMAE(const String& file_name); //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/entity_io_pdb_handler.cc b/modules/io/src/mol/entity_io_pdb_handler.cc index bd4fe5ee2..fe7038834 100644 --- a/modules/io/src/mol/entity_io_pdb_handler.cc +++ b/modules/io/src/mol/entity_io_pdb_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/entity_io_pdb_handler.hh b/modules/io/src/mol/entity_io_pdb_handler.hh index 64529c22e..3ceea37f7 100644 --- a/modules/io/src/mol/entity_io_pdb_handler.hh +++ b/modules/io/src/mol/entity_io_pdb_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/entity_io_sdf_handler.cc b/modules/io/src/mol/entity_io_sdf_handler.cc index 72ec53cbc..5a8140568 100644 --- a/modules/io/src/mol/entity_io_sdf_handler.cc +++ b/modules/io/src/mol/entity_io_sdf_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/entity_io_sdf_handler.hh b/modules/io/src/mol/entity_io_sdf_handler.hh index cebf2fa5e..66333e8d3 100644 --- a/modules/io/src/mol/entity_io_sdf_handler.hh +++ b/modules/io/src/mol/entity_io_sdf_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/io_profile.hh b/modules/io/src/mol/io_profile.hh index 0fe9ffc2f..91fe27b77 100644 --- a/modules/io/src/mol/io_profile.hh +++ b/modules/io/src/mol/io_profile.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/load_entity.cc b/modules/io/src/mol/load_entity.cc index f35178546..d760d7727 100644 --- a/modules/io/src/mol/load_entity.cc +++ b/modules/io/src/mol/load_entity.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/load_entity.hh b/modules/io/src/mol/load_entity.hh index 50350c26a..aba8f0e44 100644 --- a/modules/io/src/mol/load_entity.hh +++ b/modules/io/src/mol/load_entity.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/load_surface.cc b/modules/io/src/mol/load_surface.cc index e3f94f754..5312ae716 100644 --- a/modules/io/src/mol/load_surface.cc +++ b/modules/io/src/mol/load_surface.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/load_surface.hh b/modules/io/src/mol/load_surface.hh index 56da0c405..5b3a9388a 100644 --- a/modules/io/src/mol/load_surface.hh +++ b/modules/io/src/mol/load_surface.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/pdb_reader.cc b/modules/io/src/mol/pdb_reader.cc index 5d5f121dd..fb3ea9476 100644 --- a/modules/io/src/mol/pdb_reader.cc +++ b/modules/io/src/mol/pdb_reader.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/pdb_reader.hh b/modules/io/src/mol/pdb_reader.hh index 9e087c962..b3b6d6d0d 100644 --- a/modules/io/src/mol/pdb_reader.hh +++ b/modules/io/src/mol/pdb_reader.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/pdb_writer.cc b/modules/io/src/mol/pdb_writer.cc index bcdd204ba..6f180688d 100644 --- a/modules/io/src/mol/pdb_writer.cc +++ b/modules/io/src/mol/pdb_writer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/pdb_writer.hh b/modules/io/src/mol/pdb_writer.hh index 2ec823fcb..c34e15814 100644 --- a/modules/io/src/mol/pdb_writer.hh +++ b/modules/io/src/mol/pdb_writer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/save_entity.cc b/modules/io/src/mol/save_entity.cc index 2a7a64ef2..5d5c30e9e 100644 --- a/modules/io/src/mol/save_entity.cc +++ b/modules/io/src/mol/save_entity.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/save_entity.hh b/modules/io/src/mol/save_entity.hh index 2036f9b18..a5cf1276c 100644 --- a/modules/io/src/mol/save_entity.hh +++ b/modules/io/src/mol/save_entity.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/sdf_reader.cc b/modules/io/src/mol/sdf_reader.cc index 655ee8fa0..10020f079 100644 --- a/modules/io/src/mol/sdf_reader.cc +++ b/modules/io/src/mol/sdf_reader.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/sdf_reader.hh b/modules/io/src/mol/sdf_reader.hh index 3beacc031..14c3f5b2c 100644 --- a/modules/io/src/mol/sdf_reader.hh +++ b/modules/io/src/mol/sdf_reader.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/sdf_writer.cc b/modules/io/src/mol/sdf_writer.cc index c2db1ddb0..01b1381b0 100644 --- a/modules/io/src/mol/sdf_writer.cc +++ b/modules/io/src/mol/sdf_writer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/sdf_writer.hh b/modules/io/src/mol/sdf_writer.hh index 76538f808..3a4d611f9 100644 --- a/modules/io/src/mol/sdf_writer.hh +++ b/modules/io/src/mol/sdf_writer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/star_parser.cc b/modules/io/src/mol/star_parser.cc index 6097262cc..9d66fe09e 100644 --- a/modules/io/src/mol/star_parser.cc +++ b/modules/io/src/mol/star_parser.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/star_parser.hh b/modules/io/src/mol/star_parser.hh index b16535754..272a11898 100644 --- a/modules/io/src/mol/star_parser.hh +++ b/modules/io/src/mol/star_parser.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/surface_io_handler.hh b/modules/io/src/mol/surface_io_handler.hh index aeb84d537..6f198b7f3 100644 --- a/modules/io/src/mol/surface_io_handler.hh +++ b/modules/io/src/mol/surface_io_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/surface_io_msms_handler.cc b/modules/io/src/mol/surface_io_msms_handler.cc index 1fe223454..5ed6ceb39 100644 --- a/modules/io/src/mol/surface_io_msms_handler.cc +++ b/modules/io/src/mol/surface_io_msms_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/mol/surface_io_msms_handler.hh b/modules/io/src/mol/surface_io_msms_handler.hh index 4dc0bb456..8053a0c1a 100644 --- a/modules/io/src/mol/surface_io_msms_handler.hh +++ b/modules/io/src/mol/surface_io_msms_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/seq/clustal_io_handler.cc b/modules/io/src/seq/clustal_io_handler.cc index be1d5c213..a02fa7682 100644 --- a/modules/io/src/seq/clustal_io_handler.cc +++ b/modules/io/src/seq/clustal_io_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/seq/clustal_io_handler.hh b/modules/io/src/seq/clustal_io_handler.hh index 9a41cb199..81a6acb2c 100644 --- a/modules/io/src/seq/clustal_io_handler.hh +++ b/modules/io/src/seq/clustal_io_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/seq/fasta_io_handler.cc b/modules/io/src/seq/fasta_io_handler.cc index 198171208..0b55a73f1 100644 --- a/modules/io/src/seq/fasta_io_handler.cc +++ b/modules/io/src/seq/fasta_io_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/seq/fasta_io_handler.hh b/modules/io/src/seq/fasta_io_handler.hh index 129ac4ea4..e89a0dc6d 100644 --- a/modules/io/src/seq/fasta_io_handler.hh +++ b/modules/io/src/seq/fasta_io_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/seq/load.cc b/modules/io/src/seq/load.cc index 91105e3e0..896c5fa97 100644 --- a/modules/io/src/seq/load.cc +++ b/modules/io/src/seq/load.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/seq/load.hh b/modules/io/src/seq/load.hh index f5a73fc1c..485fef1d8 100644 --- a/modules/io/src/seq/load.hh +++ b/modules/io/src/seq/load.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/seq/pir_io_handler.cc b/modules/io/src/seq/pir_io_handler.cc index 2974dcd51..be4798d76 100644 --- a/modules/io/src/seq/pir_io_handler.cc +++ b/modules/io/src/seq/pir_io_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/seq/pir_io_handler.hh b/modules/io/src/seq/pir_io_handler.hh index 18058ef02..90ed88622 100644 --- a/modules/io/src/seq/pir_io_handler.hh +++ b/modules/io/src/seq/pir_io_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/seq/promod_io_handler.cc b/modules/io/src/seq/promod_io_handler.cc index 89246dd4c..9312ed0c4 100644 --- a/modules/io/src/seq/promod_io_handler.cc +++ b/modules/io/src/seq/promod_io_handler.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/seq/promod_io_handler.hh b/modules/io/src/seq/promod_io_handler.hh index 9a40180c8..1be00a1e2 100644 --- a/modules/io/src/seq/promod_io_handler.hh +++ b/modules/io/src/seq/promod_io_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/seq/save.cc b/modules/io/src/seq/save.cc index 38956b9fe..d023c1361 100644 --- a/modules/io/src/seq/save.cc +++ b/modules/io/src/seq/save.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/seq/save.hh b/modules/io/src/seq/save.hh index e8c48eeb1..843e7eeba 100644 --- a/modules/io/src/seq/save.hh +++ b/modules/io/src/seq/save.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/seq/sequence_io_handler.hh b/modules/io/src/seq/sequence_io_handler.hh index cc918478a..5fb188ad3 100644 --- a/modules/io/src/seq/sequence_io_handler.hh +++ b/modules/io/src/seq/sequence_io_handler.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/src/swap_util.hh b/modules/io/src/swap_util.hh index b1c02faac..915a45e60 100755 --- a/modules/io/src/swap_util.hh +++ b/modules/io/src/swap_util.hh @@ -2,7 +2,7 @@ // This file is part of the OpenStructure project <www.openstructure.org> // // Copyright (C) 2003-2010 by the IPLT authors -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/tests/test_clustal.cc b/modules/io/tests/test_clustal.cc index cb9fd13ee..682dc60bb 100644 --- a/modules/io/tests/test_clustal.cc +++ b/modules/io/tests/test_clustal.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/tests/test_io_crd.cc b/modules/io/tests/test_io_crd.cc index 55ba18cfb..14400aed8 100644 --- a/modules/io/tests/test_io_crd.cc +++ b/modules/io/tests/test_io_crd.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/tests/test_io_pdb.cc b/modules/io/tests/test_io_pdb.cc index 78dab4468..55154652b 100644 --- a/modules/io/tests/test_io_pdb.cc +++ b/modules/io/tests/test_io_pdb.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/tests/test_io_sdf.cc b/modules/io/tests/test_io_sdf.cc index f18f018bc..60861a9ab 100644 --- a/modules/io/tests/test_io_sdf.cc +++ b/modules/io/tests/test_io_sdf.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/tests/test_iomanager.cc b/modules/io/tests/test_iomanager.cc index 211564627..47a7e628e 100644 --- a/modules/io/tests/test_iomanager.cc +++ b/modules/io/tests/test_iomanager.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/tests/test_pir.cc b/modules/io/tests/test_pir.cc index 1829404cc..00482c064 100644 --- a/modules/io/tests/test_pir.cc +++ b/modules/io/tests/test_pir.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/tests/test_star_parser.cc b/modules/io/tests/test_star_parser.cc index 7c9864dab..0c73327ba 100644 --- a/modules/io/tests/test_star_parser.cc +++ b/modules/io/tests/test_star_parser.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/io/tests/tests.cc b/modules/io/tests/tests.cc index bcfbed2a8..faa6774fc 100644 --- a/modules/io/tests/tests.cc +++ b/modules/io/tests/tests.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/alg/pymod/export_entity_to_density.cc b/modules/mol/alg/pymod/export_entity_to_density.cc index bf9ace1fe..ee122d2da 100644 --- a/modules/mol/alg/pymod/export_entity_to_density.cc +++ b/modules/mol/alg/pymod/export_entity_to_density.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/alg/pymod/export_svd_superpose.cc b/modules/mol/alg/pymod/export_svd_superpose.cc index b10a4b7c1..0f1e5098d 100644 --- a/modules/mol/alg/pymod/export_svd_superpose.cc +++ b/modules/mol/alg/pymod/export_svd_superpose.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/alg/pymod/wrap_mol_alg.cc b/modules/mol/alg/pymod/wrap_mol_alg.cc index 4f1f03d4e..584657556 100644 --- a/modules/mol/alg/pymod/wrap_mol_alg.cc +++ b/modules/mol/alg/pymod/wrap_mol_alg.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/alg/src/filter_clashes.cc b/modules/mol/alg/src/filter_clashes.cc index 7a176cba2..bfb435c2f 100644 --- a/modules/mol/alg/src/filter_clashes.cc +++ b/modules/mol/alg/src/filter_clashes.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/alg/src/filter_clashes.hh b/modules/mol/alg/src/filter_clashes.hh index 043510d98..052e1ce5f 100644 --- a/modules/mol/alg/src/filter_clashes.hh +++ b/modules/mol/alg/src/filter_clashes.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/alg/src/ldt.cc b/modules/mol/alg/src/ldt.cc index 109711672..ff566e489 100644 --- a/modules/mol/alg/src/ldt.cc +++ b/modules/mol/alg/src/ldt.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/alg/src/local_dist_test.hh b/modules/mol/alg/src/local_dist_test.hh index a4e645acc..06c87c322 100644 --- a/modules/mol/alg/src/local_dist_test.hh +++ b/modules/mol/alg/src/local_dist_test.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/alg/src/module_config.hh b/modules/mol/alg/src/module_config.hh index 43474f7ba..2ab0ff089 100644 --- a/modules/mol/alg/src/module_config.hh +++ b/modules/mol/alg/src/module_config.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/alg/src/sec_structure_segments.cc b/modules/mol/alg/src/sec_structure_segments.cc index e3b0a14e2..4c156ba1f 100644 --- a/modules/mol/alg/src/sec_structure_segments.cc +++ b/modules/mol/alg/src/sec_structure_segments.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/alg/src/sec_structure_segments.hh b/modules/mol/alg/src/sec_structure_segments.hh index a30349bee..7874c2454 100644 --- a/modules/mol/alg/src/sec_structure_segments.hh +++ b/modules/mol/alg/src/sec_structure_segments.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/alg/src/superpose_frames.cc b/modules/mol/alg/src/superpose_frames.cc index 560293c16..defe8a324 100644 --- a/modules/mol/alg/src/superpose_frames.cc +++ b/modules/mol/alg/src/superpose_frames.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/alg/src/superpose_frames.hh b/modules/mol/alg/src/superpose_frames.hh index 9416c5a92..c3475862b 100644 --- a/modules/mol/alg/src/superpose_frames.hh +++ b/modules/mol/alg/src/superpose_frames.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/alg/src/svd_superpose.cc b/modules/mol/alg/src/svd_superpose.cc index 90b6a8c04..46cc82acf 100644 --- a/modules/mol/alg/src/svd_superpose.cc +++ b/modules/mol/alg/src/svd_superpose.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/alg/src/svd_superpose.hh b/modules/mol/alg/src/svd_superpose.hh index 1b3f5e29a..4f404e780 100644 --- a/modules/mol/alg/src/svd_superpose.hh +++ b/modules/mol/alg/src/svd_superpose.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/alg/tests/test_superposition.cc b/modules/mol/alg/tests/test_superposition.cc index 0d18b1aa8..bc10f0412 100644 --- a/modules/mol/alg/tests/test_superposition.cc +++ b/modules/mol/alg/tests/test_superposition.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/alg/tests/tests.cc b/modules/mol/alg/tests/tests.cc index c73f1343d..4308786c1 100644 --- a/modules/mol/alg/tests/tests.cc +++ b/modules/mol/alg/tests/tests.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/__init__.py b/modules/mol/base/pymod/__init__.py index a473f7ae4..22c485bc0 100644 --- a/modules/mol/base/pymod/__init__.py +++ b/modules/mol/base/pymod/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/mol/base/pymod/export_atom.cc b/modules/mol/base/pymod/export_atom.cc index 67fc5a163..5891f4c10 100644 --- a/modules/mol/base/pymod/export_atom.cc +++ b/modules/mol/base/pymod/export_atom.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_atom_view.cc b/modules/mol/base/pymod/export_atom_view.cc index c33156370..e0ab17b09 100644 --- a/modules/mol/base/pymod/export_atom_view.cc +++ b/modules/mol/base/pymod/export_atom_view.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_bond.cc b/modules/mol/base/pymod/export_bond.cc index e409f0a86..7309ef939 100644 --- a/modules/mol/base/pymod/export_bond.cc +++ b/modules/mol/base/pymod/export_bond.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_bounding_box.cc b/modules/mol/base/pymod/export_bounding_box.cc index 52a47b49c..58a464e1a 100644 --- a/modules/mol/base/pymod/export_bounding_box.cc +++ b/modules/mol/base/pymod/export_bounding_box.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_chain.cc b/modules/mol/base/pymod/export_chain.cc index b21d5eb97..32bb4c37f 100644 --- a/modules/mol/base/pymod/export_chain.cc +++ b/modules/mol/base/pymod/export_chain.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_chain_view.cc b/modules/mol/base/pymod/export_chain_view.cc index 3835eed75..388844272 100644 --- a/modules/mol/base/pymod/export_chain_view.cc +++ b/modules/mol/base/pymod/export_chain_view.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_coord_group.cc b/modules/mol/base/pymod/export_coord_group.cc index bed54377e..ebd0f1f33 100644 --- a/modules/mol/base/pymod/export_coord_group.cc +++ b/modules/mol/base/pymod/export_coord_group.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_editors.cc b/modules/mol/base/pymod/export_editors.cc index 4b8d4123e..9976b0d8f 100644 --- a/modules/mol/base/pymod/export_editors.cc +++ b/modules/mol/base/pymod/export_editors.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_entity.cc b/modules/mol/base/pymod/export_entity.cc index 3f3858ed0..34a8adcf8 100644 --- a/modules/mol/base/pymod/export_entity.cc +++ b/modules/mol/base/pymod/export_entity.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_entity_view.cc b/modules/mol/base/pymod/export_entity_view.cc index 422eb77d1..86a468208 100644 --- a/modules/mol/base/pymod/export_entity_view.cc +++ b/modules/mol/base/pymod/export_entity_view.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_property_id.cc b/modules/mol/base/pymod/export_property_id.cc index 420f19580..274742c6f 100644 --- a/modules/mol/base/pymod/export_property_id.cc +++ b/modules/mol/base/pymod/export_property_id.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_query.cc b/modules/mol/base/pymod/export_query.cc index 4b54cb186..7930cd426 100644 --- a/modules/mol/base/pymod/export_query.cc +++ b/modules/mol/base/pymod/export_query.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_query_view_wrapper.cc b/modules/mol/base/pymod/export_query_view_wrapper.cc index 9bc933069..f84fa6c0e 100644 --- a/modules/mol/base/pymod/export_query_view_wrapper.cc +++ b/modules/mol/base/pymod/export_query_view_wrapper.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_residue.cc b/modules/mol/base/pymod/export_residue.cc index 4679840ee..8edfc247d 100644 --- a/modules/mol/base/pymod/export_residue.cc +++ b/modules/mol/base/pymod/export_residue.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_residue_view.cc b/modules/mol/base/pymod/export_residue_view.cc index 81b66c145..e87520e12 100644 --- a/modules/mol/base/pymod/export_residue_view.cc +++ b/modules/mol/base/pymod/export_residue_view.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_surface.cc b/modules/mol/base/pymod/export_surface.cc index 07ff89d1b..9d650e15f 100644 --- a/modules/mol/base/pymod/export_surface.cc +++ b/modules/mol/base/pymod/export_surface.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_torsion.cc b/modules/mol/base/pymod/export_torsion.cc index b2bab442d..e7b45e0fd 100644 --- a/modules/mol/base/pymod/export_torsion.cc +++ b/modules/mol/base/pymod/export_torsion.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/export_visitor.cc b/modules/mol/base/pymod/export_visitor.cc index 1191dc4eb..0def51e95 100644 --- a/modules/mol/base/pymod/export_visitor.cc +++ b/modules/mol/base/pymod/export_visitor.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/pymod/wrap_mol.cc b/modules/mol/base/pymod/wrap_mol.cc index a388d4786..7055b2f78 100644 --- a/modules/mol/base/pymod/wrap_mol.cc +++ b/modules/mol/base/pymod/wrap_mol.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/atom_base.cc b/modules/mol/base/src/atom_base.cc index ee41fbf1f..f25d40135 100644 --- a/modules/mol/base/src/atom_base.cc +++ b/modules/mol/base/src/atom_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/atom_base.hh b/modules/mol/base/src/atom_base.hh index a6ddaa7cd..18aec4a39 100644 --- a/modules/mol/base/src/atom_base.hh +++ b/modules/mol/base/src/atom_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/atom_handle.cc b/modules/mol/base/src/atom_handle.cc index 61c975724..cb2a219c2 100644 --- a/modules/mol/base/src/atom_handle.cc +++ b/modules/mol/base/src/atom_handle.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/atom_handle.hh b/modules/mol/base/src/atom_handle.hh index 83a1c9046..c0effc863 100644 --- a/modules/mol/base/src/atom_handle.hh +++ b/modules/mol/base/src/atom_handle.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/atom_view.cc b/modules/mol/base/src/atom_view.cc index 20c14afbe..d12073b9f 100644 --- a/modules/mol/base/src/atom_view.cc +++ b/modules/mol/base/src/atom_view.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/atom_view.hh b/modules/mol/base/src/atom_view.hh index 770f41550..5016e1587 100644 --- a/modules/mol/base/src/atom_view.hh +++ b/modules/mol/base/src/atom_view.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/bond_handle.cc b/modules/mol/base/src/bond_handle.cc index 2441e5273..3be1b88bd 100644 --- a/modules/mol/base/src/bond_handle.cc +++ b/modules/mol/base/src/bond_handle.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/bond_handle.hh b/modules/mol/base/src/bond_handle.hh index 9d6bea4c6..ea4425add 100644 --- a/modules/mol/base/src/bond_handle.hh +++ b/modules/mol/base/src/bond_handle.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/bond_table.hh b/modules/mol/base/src/bond_table.hh index dedcc7c20..b0845c058 100644 --- a/modules/mol/base/src/bond_table.hh +++ b/modules/mol/base/src/bond_table.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/bounding_box.cc b/modules/mol/base/src/bounding_box.cc index 15473b5de..4b3e46d35 100644 --- a/modules/mol/base/src/bounding_box.cc +++ b/modules/mol/base/src/bounding_box.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/bounding_box.hh b/modules/mol/base/src/bounding_box.hh index e1f221068..010d6001d 100644 --- a/modules/mol/base/src/bounding_box.hh +++ b/modules/mol/base/src/bounding_box.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/chain_base.cc b/modules/mol/base/src/chain_base.cc index 3fd191bb9..a82f8c05b 100644 --- a/modules/mol/base/src/chain_base.cc +++ b/modules/mol/base/src/chain_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/chain_base.hh b/modules/mol/base/src/chain_base.hh index faf7a5c98..4a904a2a8 100644 --- a/modules/mol/base/src/chain_base.hh +++ b/modules/mol/base/src/chain_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/chain_handle.cc b/modules/mol/base/src/chain_handle.cc index 1f0e8094c..9ff209e35 100644 --- a/modules/mol/base/src/chain_handle.cc +++ b/modules/mol/base/src/chain_handle.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/chain_handle.hh b/modules/mol/base/src/chain_handle.hh index 1d774dadd..576c4b671 100644 --- a/modules/mol/base/src/chain_handle.hh +++ b/modules/mol/base/src/chain_handle.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/chain_view.cc b/modules/mol/base/src/chain_view.cc index beac66cbe..97f69b081 100644 --- a/modules/mol/base/src/chain_view.cc +++ b/modules/mol/base/src/chain_view.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/chain_view.hh b/modules/mol/base/src/chain_view.hh index fbade4518..72ed7a72e 100644 --- a/modules/mol/base/src/chain_view.hh +++ b/modules/mol/base/src/chain_view.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/chem_class.hh b/modules/mol/base/src/chem_class.hh index de74bcabc..7bbbe963a 100644 --- a/modules/mol/base/src/chem_class.hh +++ b/modules/mol/base/src/chem_class.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/coord_frame.hh b/modules/mol/base/src/coord_frame.hh index 017a58865..c55b855a4 100644 --- a/modules/mol/base/src/coord_frame.hh +++ b/modules/mol/base/src/coord_frame.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/coord_group.cc b/modules/mol/base/src/coord_group.cc index b4bea4c8e..a68985d6c 100644 --- a/modules/mol/base/src/coord_group.cc +++ b/modules/mol/base/src/coord_group.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/coord_group.hh b/modules/mol/base/src/coord_group.hh index 8f7f78c9e..a3e582b15 100644 --- a/modules/mol/base/src/coord_group.hh +++ b/modules/mol/base/src/coord_group.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/coord_source.cc b/modules/mol/base/src/coord_source.cc index db02718fd..5f0e42a63 100644 --- a/modules/mol/base/src/coord_source.cc +++ b/modules/mol/base/src/coord_source.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/coord_source.hh b/modules/mol/base/src/coord_source.hh index 590ba8073..604817535 100644 --- a/modules/mol/base/src/coord_source.hh +++ b/modules/mol/base/src/coord_source.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/editor_base.cc b/modules/mol/base/src/editor_base.cc index 29b5d1911..01eaf549d 100644 --- a/modules/mol/base/src/editor_base.cc +++ b/modules/mol/base/src/editor_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/editor_base.hh b/modules/mol/base/src/editor_base.hh index 964f2fdba..fd6c63d2a 100644 --- a/modules/mol/base/src/editor_base.hh +++ b/modules/mol/base/src/editor_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/editor_type_fw.hh b/modules/mol/base/src/editor_type_fw.hh index bc7913499..f1effeb78 100644 --- a/modules/mol/base/src/editor_type_fw.hh +++ b/modules/mol/base/src/editor_type_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/entity_base.cc b/modules/mol/base/src/entity_base.cc index 5cd4f9fc7..838b9afc4 100644 --- a/modules/mol/base/src/entity_base.cc +++ b/modules/mol/base/src/entity_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/entity_base.hh b/modules/mol/base/src/entity_base.hh index 7e5c7f2d7..fb23974d1 100644 --- a/modules/mol/base/src/entity_base.hh +++ b/modules/mol/base/src/entity_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/entity_handle.cc b/modules/mol/base/src/entity_handle.cc index 1de8bff48..eebd571f7 100644 --- a/modules/mol/base/src/entity_handle.cc +++ b/modules/mol/base/src/entity_handle.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/entity_handle.hh b/modules/mol/base/src/entity_handle.hh index a7d8f887e..559a2cf10 100644 --- a/modules/mol/base/src/entity_handle.hh +++ b/modules/mol/base/src/entity_handle.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/entity_observer.cc b/modules/mol/base/src/entity_observer.cc index a9e4b1b1a..ddbe254a2 100644 --- a/modules/mol/base/src/entity_observer.cc +++ b/modules/mol/base/src/entity_observer.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/entity_observer.hh b/modules/mol/base/src/entity_observer.hh index 2d861c1a7..25370fe25 100644 --- a/modules/mol/base/src/entity_observer.hh +++ b/modules/mol/base/src/entity_observer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/entity_observer_fw.hh b/modules/mol/base/src/entity_observer_fw.hh index f3f2c72a0..043c8388a 100644 --- a/modules/mol/base/src/entity_observer_fw.hh +++ b/modules/mol/base/src/entity_observer_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/entity_property_mapper.cc b/modules/mol/base/src/entity_property_mapper.cc index c6cd606b3..fdece1e73 100644 --- a/modules/mol/base/src/entity_property_mapper.cc +++ b/modules/mol/base/src/entity_property_mapper.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/entity_property_mapper.hh b/modules/mol/base/src/entity_property_mapper.hh index 4fddac267..eaa947a5e 100644 --- a/modules/mol/base/src/entity_property_mapper.hh +++ b/modules/mol/base/src/entity_property_mapper.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/entity_view.cc b/modules/mol/base/src/entity_view.cc index 8517e548b..3e5445b56 100644 --- a/modules/mol/base/src/entity_view.cc +++ b/modules/mol/base/src/entity_view.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/entity_view.hh b/modules/mol/base/src/entity_view.hh index b16396686..5d2a0848c 100644 --- a/modules/mol/base/src/entity_view.hh +++ b/modules/mol/base/src/entity_view.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/entity_visitor.cc b/modules/mol/base/src/entity_visitor.cc index 9c0212518..0a9f1a28e 100644 --- a/modules/mol/base/src/entity_visitor.cc +++ b/modules/mol/base/src/entity_visitor.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/entity_visitor.hh b/modules/mol/base/src/entity_visitor.hh index bef4f8c7a..f6528e184 100644 --- a/modules/mol/base/src/entity_visitor.hh +++ b/modules/mol/base/src/entity_visitor.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/entity_visitor_fw.hh b/modules/mol/base/src/entity_visitor_fw.hh index c6d38eee0..c4ea3aebd 100644 --- a/modules/mol/base/src/entity_visitor_fw.hh +++ b/modules/mol/base/src/entity_visitor_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/handle_type_fw.hh b/modules/mol/base/src/handle_type_fw.hh index e5b41f3a6..cfeb00e5d 100644 --- a/modules/mol/base/src/handle_type_fw.hh +++ b/modules/mol/base/src/handle_type_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/ics_editor.cc b/modules/mol/base/src/ics_editor.cc index cacc8199d..c374a0f09 100644 --- a/modules/mol/base/src/ics_editor.cc +++ b/modules/mol/base/src/ics_editor.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/ics_editor.hh b/modules/mol/base/src/ics_editor.hh index 0caf51ea8..964333694 100644 --- a/modules/mol/base/src/ics_editor.hh +++ b/modules/mol/base/src/ics_editor.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/atom_group.hh b/modules/mol/base/src/impl/atom_group.hh index 3fa815c38..934fda241 100644 --- a/modules/mol/base/src/impl/atom_group.hh +++ b/modules/mol/base/src/impl/atom_group.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/atom_impl.cc b/modules/mol/base/src/impl/atom_impl.cc index 71b714385..a04f4ce1e 100644 --- a/modules/mol/base/src/impl/atom_impl.cc +++ b/modules/mol/base/src/impl/atom_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/atom_impl.hh b/modules/mol/base/src/impl/atom_impl.hh index 589432ca9..963f5ab60 100644 --- a/modules/mol/base/src/impl/atom_impl.hh +++ b/modules/mol/base/src/impl/atom_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/atom_impl_fw.hh b/modules/mol/base/src/impl/atom_impl_fw.hh index 77224c6aa..ab2be2112 100644 --- a/modules/mol/base/src/impl/atom_impl_fw.hh +++ b/modules/mol/base/src/impl/atom_impl_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/atom_prop.cc b/modules/mol/base/src/impl/atom_prop.cc index aefb8d219..ebf27f7d6 100644 --- a/modules/mol/base/src/impl/atom_prop.cc +++ b/modules/mol/base/src/impl/atom_prop.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/atom_prop.hh b/modules/mol/base/src/impl/atom_prop.hh index 95e3068ea..b592f18e0 100644 --- a/modules/mol/base/src/impl/atom_prop.hh +++ b/modules/mol/base/src/impl/atom_prop.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/chain_impl.cc b/modules/mol/base/src/impl/chain_impl.cc index 4d5313a38..456255c3c 100644 --- a/modules/mol/base/src/impl/chain_impl.cc +++ b/modules/mol/base/src/impl/chain_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/chain_impl.hh b/modules/mol/base/src/impl/chain_impl.hh index 23b12119b..cf7c1b838 100644 --- a/modules/mol/base/src/impl/chain_impl.hh +++ b/modules/mol/base/src/impl/chain_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/chain_impl_fw.hh b/modules/mol/base/src/impl/chain_impl_fw.hh index 2ba9c725d..124a24ba3 100644 --- a/modules/mol/base/src/impl/chain_impl_fw.hh +++ b/modules/mol/base/src/impl/chain_impl_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/connector_impl.cc b/modules/mol/base/src/impl/connector_impl.cc index 31d22f1e4..b244bc000 100644 --- a/modules/mol/base/src/impl/connector_impl.cc +++ b/modules/mol/base/src/impl/connector_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/connector_impl.hh b/modules/mol/base/src/impl/connector_impl.hh index 2898a237d..acb50b57a 100644 --- a/modules/mol/base/src/impl/connector_impl.hh +++ b/modules/mol/base/src/impl/connector_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/connector_impl_fw.hh b/modules/mol/base/src/impl/connector_impl_fw.hh index ec1ca0677..aa5bbf690 100644 --- a/modules/mol/base/src/impl/connector_impl_fw.hh +++ b/modules/mol/base/src/impl/connector_impl_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/dataset_impl.hh b/modules/mol/base/src/impl/dataset_impl.hh index a831f8c1e..15b3b6e51 100644 --- a/modules/mol/base/src/impl/dataset_impl.hh +++ b/modules/mol/base/src/impl/dataset_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/dataset_impl_fw.hh b/modules/mol/base/src/impl/dataset_impl_fw.hh index 64b726d72..74e659a6b 100644 --- a/modules/mol/base/src/impl/dataset_impl_fw.hh +++ b/modules/mol/base/src/impl/dataset_impl_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/dihedral.cc b/modules/mol/base/src/impl/dihedral.cc index dab6b84d8..3580829b1 100644 --- a/modules/mol/base/src/impl/dihedral.cc +++ b/modules/mol/base/src/impl/dihedral.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/dihedral.hh b/modules/mol/base/src/impl/dihedral.hh index ce982f622..2996205ba 100644 --- a/modules/mol/base/src/impl/dihedral.hh +++ b/modules/mol/base/src/impl/dihedral.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/entity_impl.cc b/modules/mol/base/src/impl/entity_impl.cc index c7ceb61ce..eb85cef79 100644 --- a/modules/mol/base/src/impl/entity_impl.cc +++ b/modules/mol/base/src/impl/entity_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/entity_impl.hh b/modules/mol/base/src/impl/entity_impl.hh index 3c6579452..541aec54e 100644 --- a/modules/mol/base/src/impl/entity_impl.hh +++ b/modules/mol/base/src/impl/entity_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/entity_impl_fw.hh b/modules/mol/base/src/impl/entity_impl_fw.hh index 7ee90d227..5fedf1484 100644 --- a/modules/mol/base/src/impl/entity_impl_fw.hh +++ b/modules/mol/base/src/impl/entity_impl_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/fragment_impl.cc b/modules/mol/base/src/impl/fragment_impl.cc index f8771e0ae..63459aee4 100644 --- a/modules/mol/base/src/impl/fragment_impl.cc +++ b/modules/mol/base/src/impl/fragment_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/fragment_impl.hh b/modules/mol/base/src/impl/fragment_impl.hh index 03f7d0c20..71df89405 100644 --- a/modules/mol/base/src/impl/fragment_impl.hh +++ b/modules/mol/base/src/impl/fragment_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/fragment_impl_fw.hh b/modules/mol/base/src/impl/fragment_impl_fw.hh index 6d2f705c4..8d8b0f4a0 100644 --- a/modules/mol/base/src/impl/fragment_impl_fw.hh +++ b/modules/mol/base/src/impl/fragment_impl_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/pointer_iterator.hh b/modules/mol/base/src/impl/pointer_iterator.hh index 63a5676ca..9e170f26d 100644 --- a/modules/mol/base/src/impl/pointer_iterator.hh +++ b/modules/mol/base/src/impl/pointer_iterator.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/query_ast.cc b/modules/mol/base/src/impl/query_ast.cc index 9c602c124..45cd0dabc 100644 --- a/modules/mol/base/src/impl/query_ast.cc +++ b/modules/mol/base/src/impl/query_ast.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/query_ast.hh b/modules/mol/base/src/impl/query_ast.hh index 3abedd805..50cd4a670 100644 --- a/modules/mol/base/src/impl/query_ast.hh +++ b/modules/mol/base/src/impl/query_ast.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/query_impl.cc b/modules/mol/base/src/impl/query_impl.cc index d801f68ab..463daac1c 100644 --- a/modules/mol/base/src/impl/query_impl.cc +++ b/modules/mol/base/src/impl/query_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/query_impl.hh b/modules/mol/base/src/impl/query_impl.hh index 02915d391..4b81bc3db 100644 --- a/modules/mol/base/src/impl/query_impl.hh +++ b/modules/mol/base/src/impl/query_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/query_impl_fw.hh b/modules/mol/base/src/impl/query_impl_fw.hh index 8fa9d2492..f29b7f136 100644 --- a/modules/mol/base/src/impl/query_impl_fw.hh +++ b/modules/mol/base/src/impl/query_impl_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/residue_impl.cc b/modules/mol/base/src/impl/residue_impl.cc index 6d0856b11..3b8bd2ace 100644 --- a/modules/mol/base/src/impl/residue_impl.cc +++ b/modules/mol/base/src/impl/residue_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/residue_impl.hh b/modules/mol/base/src/impl/residue_impl.hh index 925204982..560571f87 100644 --- a/modules/mol/base/src/impl/residue_impl.hh +++ b/modules/mol/base/src/impl/residue_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/residue_impl_fw.hh b/modules/mol/base/src/impl/residue_impl_fw.hh index 0d19c8162..de5d67f88 100644 --- a/modules/mol/base/src/impl/residue_impl_fw.hh +++ b/modules/mol/base/src/impl/residue_impl_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/surface_impl.cc b/modules/mol/base/src/impl/surface_impl.cc index 94f4060f2..3a1d796b2 100644 --- a/modules/mol/base/src/impl/surface_impl.cc +++ b/modules/mol/base/src/impl/surface_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/surface_impl.hh b/modules/mol/base/src/impl/surface_impl.hh index 78fd1ea57..d8daf7f8f 100644 --- a/modules/mol/base/src/impl/surface_impl.hh +++ b/modules/mol/base/src/impl/surface_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/surface_impl_fw.hh b/modules/mol/base/src/impl/surface_impl_fw.hh index dac23ce74..a5ff121d2 100644 --- a/modules/mol/base/src/impl/surface_impl_fw.hh +++ b/modules/mol/base/src/impl/surface_impl_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/torsion_impl.cc b/modules/mol/base/src/impl/torsion_impl.cc index 42e6b1bb4..cff865673 100644 --- a/modules/mol/base/src/impl/torsion_impl.cc +++ b/modules/mol/base/src/impl/torsion_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/torsion_impl.hh b/modules/mol/base/src/impl/torsion_impl.hh index 7654a72de..e6d441e5d 100644 --- a/modules/mol/base/src/impl/torsion_impl.hh +++ b/modules/mol/base/src/impl/torsion_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/impl/torsion_impl_fw.hh b/modules/mol/base/src/impl/torsion_impl_fw.hh index 792ab9765..88892cdae 100644 --- a/modules/mol/base/src/impl/torsion_impl_fw.hh +++ b/modules/mol/base/src/impl/torsion_impl_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/in_mem_coord_source.hh b/modules/mol/base/src/in_mem_coord_source.hh index 67b31e95f..dc032ebbe 100644 --- a/modules/mol/base/src/in_mem_coord_source.hh +++ b/modules/mol/base/src/in_mem_coord_source.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/iterator.cc b/modules/mol/base/src/iterator.cc index 05fc8f59e..f72aefe62 100644 --- a/modules/mol/base/src/iterator.cc +++ b/modules/mol/base/src/iterator.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/iterator.hh b/modules/mol/base/src/iterator.hh index d12798553..868f0b180 100644 --- a/modules/mol/base/src/iterator.hh +++ b/modules/mol/base/src/iterator.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/iterator_fw.hh b/modules/mol/base/src/iterator_fw.hh index b0906a3e3..c5fd2ef1d 100644 --- a/modules/mol/base/src/iterator_fw.hh +++ b/modules/mol/base/src/iterator_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/module_config.hh b/modules/mol/base/src/module_config.hh index 8d3689ad6..995db6ddb 100644 --- a/modules/mol/base/src/module_config.hh +++ b/modules/mol/base/src/module_config.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/mol.hh b/modules/mol/base/src/mol.hh index 269d24221..cea4586e3 100644 --- a/modules/mol/base/src/mol.hh +++ b/modules/mol/base/src/mol.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/not_connected_error.cc b/modules/mol/base/src/not_connected_error.cc index f65aa85aa..43e31f731 100644 --- a/modules/mol/base/src/not_connected_error.cc +++ b/modules/mol/base/src/not_connected_error.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/not_connected_error.hh b/modules/mol/base/src/not_connected_error.hh index d33892147..cce9f1b4f 100644 --- a/modules/mol/base/src/not_connected_error.hh +++ b/modules/mol/base/src/not_connected_error.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/property_id.cc b/modules/mol/base/src/property_id.cc index 0ce93195b..8a7d5a49d 100644 --- a/modules/mol/base/src/property_id.cc +++ b/modules/mol/base/src/property_id.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/property_id.hh b/modules/mol/base/src/property_id.hh index f8a541ce7..6bb64b30f 100644 --- a/modules/mol/base/src/property_id.hh +++ b/modules/mol/base/src/property_id.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/query.cc b/modules/mol/base/src/query.cc index 5c67b03d5..4359cc26b 100644 --- a/modules/mol/base/src/query.cc +++ b/modules/mol/base/src/query.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/query.hh b/modules/mol/base/src/query.hh index a064629cb..c76454670 100644 --- a/modules/mol/base/src/query.hh +++ b/modules/mol/base/src/query.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/query_error.cc b/modules/mol/base/src/query_error.cc index 62e06d56b..1cdce0fe2 100644 --- a/modules/mol/base/src/query_error.cc +++ b/modules/mol/base/src/query_error.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/query_error.hh b/modules/mol/base/src/query_error.hh index 1b34ec906..4d2fe8639 100644 --- a/modules/mol/base/src/query_error.hh +++ b/modules/mol/base/src/query_error.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/query_state.cc b/modules/mol/base/src/query_state.cc index 5df2d900b..2f04aeecc 100644 --- a/modules/mol/base/src/query_state.cc +++ b/modules/mol/base/src/query_state.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/query_state.hh b/modules/mol/base/src/query_state.hh index b2a5557ba..30c1cd069 100644 --- a/modules/mol/base/src/query_state.hh +++ b/modules/mol/base/src/query_state.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/query_view_wrapper.cc b/modules/mol/base/src/query_view_wrapper.cc index 651566458..068a1013b 100644 --- a/modules/mol/base/src/query_view_wrapper.cc +++ b/modules/mol/base/src/query_view_wrapper.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/query_view_wrapper.hh b/modules/mol/base/src/query_view_wrapper.hh index 44ec53d3b..fd6b5b4a0 100644 --- a/modules/mol/base/src/query_view_wrapper.hh +++ b/modules/mol/base/src/query_view_wrapper.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/residue_base.cc b/modules/mol/base/src/residue_base.cc index f2074c8d3..a1d321dee 100644 --- a/modules/mol/base/src/residue_base.cc +++ b/modules/mol/base/src/residue_base.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/residue_base.hh b/modules/mol/base/src/residue_base.hh index 92901bf9e..153d6e2d7 100644 --- a/modules/mol/base/src/residue_base.hh +++ b/modules/mol/base/src/residue_base.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/residue_handle.cc b/modules/mol/base/src/residue_handle.cc index 6c9e007d8..da838c532 100644 --- a/modules/mol/base/src/residue_handle.cc +++ b/modules/mol/base/src/residue_handle.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/residue_handle.hh b/modules/mol/base/src/residue_handle.hh index 5705f3de8..54b9092a0 100644 --- a/modules/mol/base/src/residue_handle.hh +++ b/modules/mol/base/src/residue_handle.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/residue_prop.hh b/modules/mol/base/src/residue_prop.hh index 001660fa0..19bccc98e 100644 --- a/modules/mol/base/src/residue_prop.hh +++ b/modules/mol/base/src/residue_prop.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/residue_view.cc b/modules/mol/base/src/residue_view.cc index 2fef9c943..4cced4497 100644 --- a/modules/mol/base/src/residue_view.cc +++ b/modules/mol/base/src/residue_view.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/residue_view.hh b/modules/mol/base/src/residue_view.hh index 2f56f015c..8c95c81c1 100644 --- a/modules/mol/base/src/residue_view.hh +++ b/modules/mol/base/src/residue_view.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/sec_structure.hh b/modules/mol/base/src/sec_structure.hh index 8ed299b76..22779ed81 100644 --- a/modules/mol/base/src/sec_structure.hh +++ b/modules/mol/base/src/sec_structure.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/skel_link.cc b/modules/mol/base/src/skel_link.cc index 075767b59..6e2c72f8d 100644 --- a/modules/mol/base/src/skel_link.cc +++ b/modules/mol/base/src/skel_link.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/skel_link.hh b/modules/mol/base/src/skel_link.hh index 541a9f3d2..bf1f12de5 100644 --- a/modules/mol/base/src/skel_link.hh +++ b/modules/mol/base/src/skel_link.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/skel_link_fw.hh b/modules/mol/base/src/skel_link_fw.hh index 3e76a4a36..eb7a09d3d 100644 --- a/modules/mol/base/src/skel_link_fw.hh +++ b/modules/mol/base/src/skel_link_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/spatial_organizer.hh b/modules/mol/base/src/spatial_organizer.hh index 842a1dd4d..af7fd6c97 100644 --- a/modules/mol/base/src/spatial_organizer.hh +++ b/modules/mol/base/src/spatial_organizer.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/surface.hh b/modules/mol/base/src/surface.hh index 97e1bacec..336acdbe7 100644 --- a/modules/mol/base/src/surface.hh +++ b/modules/mol/base/src/surface.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/surface_builder.cc b/modules/mol/base/src/surface_builder.cc index 3be394067..69cf67e4d 100644 --- a/modules/mol/base/src/surface_builder.cc +++ b/modules/mol/base/src/surface_builder.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/surface_builder.hh b/modules/mol/base/src/surface_builder.hh index 5349732dc..d7199d1b2 100644 --- a/modules/mol/base/src/surface_builder.hh +++ b/modules/mol/base/src/surface_builder.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/surface_handle.cc b/modules/mol/base/src/surface_handle.cc index e1169a326..6fb69167f 100644 --- a/modules/mol/base/src/surface_handle.cc +++ b/modules/mol/base/src/surface_handle.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/surface_handle.hh b/modules/mol/base/src/surface_handle.hh index a5e3eed90..3524375d3 100644 --- a/modules/mol/base/src/surface_handle.hh +++ b/modules/mol/base/src/surface_handle.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/surface_prop.hh b/modules/mol/base/src/surface_prop.hh index 999b05d77..5031b5236 100644 --- a/modules/mol/base/src/surface_prop.hh +++ b/modules/mol/base/src/surface_prop.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/torsion_handle.cc b/modules/mol/base/src/torsion_handle.cc index c63ba5410..c4bac5ff1 100644 --- a/modules/mol/base/src/torsion_handle.cc +++ b/modules/mol/base/src/torsion_handle.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/torsion_handle.hh b/modules/mol/base/src/torsion_handle.hh index 44da2a44c..856cd67e7 100644 --- a/modules/mol/base/src/torsion_handle.hh +++ b/modules/mol/base/src/torsion_handle.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/transform.cc b/modules/mol/base/src/transform.cc index 0e22f26b7..611c9111b 100644 --- a/modules/mol/base/src/transform.cc +++ b/modules/mol/base/src/transform.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/transform.hh b/modules/mol/base/src/transform.hh index 1d321fb8d..d3ce79763 100644 --- a/modules/mol/base/src/transform.hh +++ b/modules/mol/base/src/transform.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/view_op.cc b/modules/mol/base/src/view_op.cc index 0526dd4cb..a7d7e6f6d 100644 --- a/modules/mol/base/src/view_op.cc +++ b/modules/mol/base/src/view_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/view_op.hh b/modules/mol/base/src/view_op.hh index 809363758..b673f160c 100644 --- a/modules/mol/base/src/view_op.hh +++ b/modules/mol/base/src/view_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/view_type_fw.hh b/modules/mol/base/src/view_type_fw.hh index 0916266f2..cab4b81d0 100644 --- a/modules/mol/base/src/view_type_fw.hh +++ b/modules/mol/base/src/view_type_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/xcs_editor.cc b/modules/mol/base/src/xcs_editor.cc index ed4d02285..88d8bbcd4 100644 --- a/modules/mol/base/src/xcs_editor.cc +++ b/modules/mol/base/src/xcs_editor.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/src/xcs_editor.hh b/modules/mol/base/src/xcs_editor.hh index 33c9c5f11..4b89083c6 100644 --- a/modules/mol/base/src/xcs_editor.hh +++ b/modules/mol/base/src/xcs_editor.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/tests/dummy_ent.hh b/modules/mol/base/tests/dummy_ent.hh index 8e0029176..1bfe911ab 100644 --- a/modules/mol/base/tests/dummy_ent.hh +++ b/modules/mol/base/tests/dummy_ent.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/tests/test_atom_groups.cc b/modules/mol/base/tests/test_atom_groups.cc index b1ed9118e..01377b5f5 100644 --- a/modules/mol/base/tests/test_atom_groups.cc +++ b/modules/mol/base/tests/test_atom_groups.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/tests/test_chain.cc b/modules/mol/base/tests/test_chain.cc index f43b9f2ff..2b1d7a932 100644 --- a/modules/mol/base/tests/test_chain.cc +++ b/modules/mol/base/tests/test_chain.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/tests/test_conn.cc b/modules/mol/base/tests/test_conn.cc index 0c81d6900..e908f8f89 100644 --- a/modules/mol/base/tests/test_conn.cc +++ b/modules/mol/base/tests/test_conn.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/tests/test_coord_group.cc b/modules/mol/base/tests/test_coord_group.cc index cce3eb487..1fc365ad0 100644 --- a/modules/mol/base/tests/test_coord_group.cc +++ b/modules/mol/base/tests/test_coord_group.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/tests/test_delete.cc b/modules/mol/base/tests/test_delete.cc index 56d78f0a0..4a361afc9 100644 --- a/modules/mol/base/tests/test_delete.cc +++ b/modules/mol/base/tests/test_delete.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/tests/test_entity.cc b/modules/mol/base/tests/test_entity.cc index f4fb9ca01..646b75f74 100644 --- a/modules/mol/base/tests/test_entity.cc +++ b/modules/mol/base/tests/test_entity.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/tests/test_ics.cc b/modules/mol/base/tests/test_ics.cc index d577f8ca9..8c26db5d9 100644 --- a/modules/mol/base/tests/test_ics.cc +++ b/modules/mol/base/tests/test_ics.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/tests/test_iterators.cc b/modules/mol/base/tests/test_iterators.cc index 0c2900571..46c33e4d5 100644 --- a/modules/mol/base/tests/test_iterators.cc +++ b/modules/mol/base/tests/test_iterators.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/tests/test_query.cc b/modules/mol/base/tests/test_query.cc index 6e603a16a..e8d56b6a1 100644 --- a/modules/mol/base/tests/test_query.cc +++ b/modules/mol/base/tests/test_query.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/tests/test_residue.cc b/modules/mol/base/tests/test_residue.cc index f622f72a5..a5a31a2fc 100644 --- a/modules/mol/base/tests/test_residue.cc +++ b/modules/mol/base/tests/test_residue.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/tests/test_surface.cc b/modules/mol/base/tests/test_surface.cc index 6e30dcd07..2a077d867 100644 --- a/modules/mol/base/tests/test_surface.cc +++ b/modules/mol/base/tests/test_surface.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/tests/test_view.cc b/modules/mol/base/tests/test_view.cc index 3f60928d6..ebfdf10bb 100644 --- a/modules/mol/base/tests/test_view.cc +++ b/modules/mol/base/tests/test_view.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/tests/test_view_op.cc b/modules/mol/base/tests/test_view_op.cc index fb9d8ffda..30cfc8f9f 100644 --- a/modules/mol/base/tests/test_view_op.cc +++ b/modules/mol/base/tests/test_view_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/mol/base/tests/tests.cc b/modules/mol/base/tests/tests.cc index cec576115..87994767b 100644 --- a/modules/mol/base/tests/tests.cc +++ b/modules/mol/base/tests/tests.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/pymod/__init__.py b/modules/qa/pymod/__init__.py index cf9915ef9..6e144e870 100644 --- a/modules/qa/pymod/__init__.py +++ b/modules/qa/pymod/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/qa/pymod/export_clash.cc b/modules/qa/pymod/export_clash.cc index 48ee6af0a..82be0e395 100644 --- a/modules/qa/pymod/export_clash.cc +++ b/modules/qa/pymod/export_clash.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/pymod/export_interaction.cc b/modules/qa/pymod/export_interaction.cc index fe61394c0..d2e92472d 100644 --- a/modules/qa/pymod/export_interaction.cc +++ b/modules/qa/pymod/export_interaction.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/pymod/export_packing.cc b/modules/qa/pymod/export_packing.cc index 2c61fbc33..607d06182 100644 --- a/modules/qa/pymod/export_packing.cc +++ b/modules/qa/pymod/export_packing.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/pymod/export_reduced.cc b/modules/qa/pymod/export_reduced.cc index 3384c4529..14f9d5465 100644 --- a/modules/qa/pymod/export_reduced.cc +++ b/modules/qa/pymod/export_reduced.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/pymod/export_torsion.cc b/modules/qa/pymod/export_torsion.cc index ed430c871..77d76a0d5 100644 --- a/modules/qa/pymod/export_torsion.cc +++ b/modules/qa/pymod/export_torsion.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/pymod/pdbtools.py b/modules/qa/pymod/pdbtools.py index 4d51e03c5..d53d213a7 100644 --- a/modules/qa/pymod/pdbtools.py +++ b/modules/qa/pymod/pdbtools.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/qa/pymod/wrap_qa.cc b/modules/qa/pymod/wrap_qa.cc index 8020ed29e..6c4e6fcac 100644 --- a/modules/qa/pymod/wrap_qa.cc +++ b/modules/qa/pymod/wrap_qa.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/all_atom_potential.cc b/modules/qa/src/all_atom_potential.cc index 18a4ce5f0..a46393176 100644 --- a/modules/qa/src/all_atom_potential.cc +++ b/modules/qa/src/all_atom_potential.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/all_atom_potential.hh b/modules/qa/src/all_atom_potential.hh index 0a1a99b7a..80674a646 100644 --- a/modules/qa/src/all_atom_potential.hh +++ b/modules/qa/src/all_atom_potential.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/amino_acids.cc b/modules/qa/src/amino_acids.cc index a0f31e8dd..1dfefe0c5 100644 --- a/modules/qa/src/amino_acids.cc +++ b/modules/qa/src/amino_acids.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/amino_acids.hh b/modules/qa/src/amino_acids.hh index 92e80607a..309726fe6 100644 --- a/modules/qa/src/amino_acids.hh +++ b/modules/qa/src/amino_acids.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/atom_types.cc b/modules/qa/src/atom_types.cc index f307c16df..7933e93d6 100644 --- a/modules/qa/src/atom_types.cc +++ b/modules/qa/src/atom_types.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/atom_types.hh b/modules/qa/src/atom_types.hh index 1a5ad1b66..733edb004 100644 --- a/modules/qa/src/atom_types.hh +++ b/modules/qa/src/atom_types.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/clash_score.cc b/modules/qa/src/clash_score.cc index 852260660..ceb23123b 100644 --- a/modules/qa/src/clash_score.cc +++ b/modules/qa/src/clash_score.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/clash_score.hh b/modules/qa/src/clash_score.hh index bbf73a10a..fea13bbea 100644 --- a/modules/qa/src/clash_score.hh +++ b/modules/qa/src/clash_score.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/histogram.hh b/modules/qa/src/histogram.hh index a46b4f13f..e8abb8ff9 100644 --- a/modules/qa/src/histogram.hh +++ b/modules/qa/src/histogram.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/impl/reduced_impl.hh b/modules/qa/src/impl/reduced_impl.hh index 43c312ea2..77233fb30 100644 --- a/modules/qa/src/impl/reduced_impl.hh +++ b/modules/qa/src/impl/reduced_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/index.hh b/modules/qa/src/index.hh index f2744aa26..8ae741851 100644 --- a/modules/qa/src/index.hh +++ b/modules/qa/src/index.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/interaction_statistics.cc b/modules/qa/src/interaction_statistics.cc index 81399b27d..44789acec 100644 --- a/modules/qa/src/interaction_statistics.cc +++ b/modules/qa/src/interaction_statistics.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/interaction_statistics.hh b/modules/qa/src/interaction_statistics.hh index ca66774bd..046a24cc4 100644 --- a/modules/qa/src/interaction_statistics.hh +++ b/modules/qa/src/interaction_statistics.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/module_config.hh b/modules/qa/src/module_config.hh index 4a0901357..1d07f3dd7 100644 --- a/modules/qa/src/module_config.hh +++ b/modules/qa/src/module_config.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/multi_classifier.hh b/modules/qa/src/multi_classifier.hh index 371b4f4d3..846fdddec 100644 --- a/modules/qa/src/multi_classifier.hh +++ b/modules/qa/src/multi_classifier.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/packing_potential.cc b/modules/qa/src/packing_potential.cc index 10a7de4ae..b6471aaa6 100644 --- a/modules/qa/src/packing_potential.cc +++ b/modules/qa/src/packing_potential.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/packing_potential.hh b/modules/qa/src/packing_potential.hh index ea95ad86b..00c3229f6 100644 --- a/modules/qa/src/packing_potential.hh +++ b/modules/qa/src/packing_potential.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/packing_statistics.cc b/modules/qa/src/packing_statistics.cc index 8b6baddea..595af8314 100644 --- a/modules/qa/src/packing_statistics.cc +++ b/modules/qa/src/packing_statistics.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/packing_statistics.hh b/modules/qa/src/packing_statistics.hh index 3e6ced0c5..68e4e616c 100644 --- a/modules/qa/src/packing_statistics.hh +++ b/modules/qa/src/packing_statistics.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/rapdf.cc b/modules/qa/src/rapdf.cc index d3cb23ae1..d530c27b1 100644 --- a/modules/qa/src/rapdf.cc +++ b/modules/qa/src/rapdf.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/rapdf.hh b/modules/qa/src/rapdf.hh index 8dcb645d2..ae69b054e 100644 --- a/modules/qa/src/rapdf.hh +++ b/modules/qa/src/rapdf.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/reduced_potential.cc b/modules/qa/src/reduced_potential.cc index b6c308e0c..3963fc132 100644 --- a/modules/qa/src/reduced_potential.cc +++ b/modules/qa/src/reduced_potential.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/reduced_potential.hh b/modules/qa/src/reduced_potential.hh index 0f90debce..e2d600b7f 100644 --- a/modules/qa/src/reduced_potential.hh +++ b/modules/qa/src/reduced_potential.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/reduced_statistics.cc b/modules/qa/src/reduced_statistics.cc index 3a75afe84..403153e8b 100644 --- a/modules/qa/src/reduced_statistics.cc +++ b/modules/qa/src/reduced_statistics.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/reduced_statistics.hh b/modules/qa/src/reduced_statistics.hh index 7d1a24800..1f1ab2426 100644 --- a/modules/qa/src/reduced_statistics.hh +++ b/modules/qa/src/reduced_statistics.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/solis_torsion_potential.cc b/modules/qa/src/solis_torsion_potential.cc index 1a61d4d25..3c463ac00 100644 --- a/modules/qa/src/solis_torsion_potential.cc +++ b/modules/qa/src/solis_torsion_potential.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/solis_torsion_potential.hh b/modules/qa/src/solis_torsion_potential.hh index 086465a85..acfb2aed1 100644 --- a/modules/qa/src/solis_torsion_potential.hh +++ b/modules/qa/src/solis_torsion_potential.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/solis_torsion_statistics.cc b/modules/qa/src/solis_torsion_statistics.cc index 9b48639b8..ed2c6ac16 100644 --- a/modules/qa/src/solis_torsion_statistics.cc +++ b/modules/qa/src/solis_torsion_statistics.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/solis_torsion_statistics.hh b/modules/qa/src/solis_torsion_statistics.hh index b9164a57f..5c189595b 100644 --- a/modules/qa/src/solis_torsion_statistics.hh +++ b/modules/qa/src/solis_torsion_statistics.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/torsion_potential.cc b/modules/qa/src/torsion_potential.cc index 2ecf8c655..e7c15bebb 100644 --- a/modules/qa/src/torsion_potential.cc +++ b/modules/qa/src/torsion_potential.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/torsion_potential.hh b/modules/qa/src/torsion_potential.hh index d0048e84c..91b5407db 100644 --- a/modules/qa/src/torsion_potential.hh +++ b/modules/qa/src/torsion_potential.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/torsion_statistics.cc b/modules/qa/src/torsion_statistics.cc index d1cb11026..fd67b7f86 100644 --- a/modules/qa/src/torsion_statistics.cc +++ b/modules/qa/src/torsion_statistics.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/qa/src/torsion_statistics.hh b/modules/qa/src/torsion_statistics.hh index 74ad15562..73105e6e5 100644 --- a/modules/qa/src/torsion_statistics.hh +++ b/modules/qa/src/torsion_statistics.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/alg/pymod/wrap_seq_alg.cc b/modules/seq/alg/pymod/wrap_seq_alg.cc index f632d3d6e..c39a75a80 100644 --- a/modules/seq/alg/pymod/wrap_seq_alg.cc +++ b/modules/seq/alg/pymod/wrap_seq_alg.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/alg/src/alignment_opts.hh b/modules/seq/alg/src/alignment_opts.hh index fcb01c0cf..38aaa1154 100644 --- a/modules/seq/alg/src/alignment_opts.hh +++ b/modules/seq/alg/src/alignment_opts.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/alg/src/conservation.cc b/modules/seq/alg/src/conservation.cc index 46cb5cfd8..2b5bf3481 100644 --- a/modules/seq/alg/src/conservation.cc +++ b/modules/seq/alg/src/conservation.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/alg/src/conservation.hh b/modules/seq/alg/src/conservation.hh index b1375c4a2..8e4146ee7 100644 --- a/modules/seq/alg/src/conservation.hh +++ b/modules/seq/alg/src/conservation.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/alg/src/ins_del.cc b/modules/seq/alg/src/ins_del.cc index 4e086b941..50e915990 100644 --- a/modules/seq/alg/src/ins_del.cc +++ b/modules/seq/alg/src/ins_del.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/alg/src/ins_del.hh b/modules/seq/alg/src/ins_del.hh index 77014fc9c..eb4bfe396 100644 --- a/modules/seq/alg/src/ins_del.hh +++ b/modules/seq/alg/src/ins_del.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/alg/src/merge_pairwise_alignments.cc b/modules/seq/alg/src/merge_pairwise_alignments.cc index f91cc3439..6bba7edd0 100644 --- a/modules/seq/alg/src/merge_pairwise_alignments.cc +++ b/modules/seq/alg/src/merge_pairwise_alignments.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/alg/src/merge_pairwise_alignments.hh b/modules/seq/alg/src/merge_pairwise_alignments.hh index 565b31441..6a825d2e0 100644 --- a/modules/seq/alg/src/merge_pairwise_alignments.hh +++ b/modules/seq/alg/src/merge_pairwise_alignments.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/alg/src/module_config.hh b/modules/seq/alg/src/module_config.hh index f4095df52..b111b7ece 100644 --- a/modules/seq/alg/src/module_config.hh +++ b/modules/seq/alg/src/module_config.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/alg/src/sequence_identity.cc b/modules/seq/alg/src/sequence_identity.cc index 5d0a7dc2d..ed88a5048 100644 --- a/modules/seq/alg/src/sequence_identity.cc +++ b/modules/seq/alg/src/sequence_identity.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/alg/src/sequence_identity.hh b/modules/seq/alg/src/sequence_identity.hh index af9992795..93d233213 100644 --- a/modules/seq/alg/src/sequence_identity.hh +++ b/modules/seq/alg/src/sequence_identity.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/alg/src/subst_weight_matrix.cc b/modules/seq/alg/src/subst_weight_matrix.cc index 4a8a55486..85851ce2c 100644 --- a/modules/seq/alg/src/subst_weight_matrix.cc +++ b/modules/seq/alg/src/subst_weight_matrix.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/alg/src/subst_weight_matrix.hh b/modules/seq/alg/src/subst_weight_matrix.hh index 9bf0ba16c..cdf0fc83a 100644 --- a/modules/seq/alg/src/subst_weight_matrix.hh +++ b/modules/seq/alg/src/subst_weight_matrix.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/alg/tests/test_merge_pairwise_alignments.cc b/modules/seq/alg/tests/test_merge_pairwise_alignments.cc index 4e0e4d67a..3f67ac5d1 100644 --- a/modules/seq/alg/tests/test_merge_pairwise_alignments.cc +++ b/modules/seq/alg/tests/test_merge_pairwise_alignments.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/alg/tests/test_sequence_identity.cc b/modules/seq/alg/tests/test_sequence_identity.cc index a6f553393..0b275d99b 100644 --- a/modules/seq/alg/tests/test_sequence_identity.cc +++ b/modules/seq/alg/tests/test_sequence_identity.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/alg/tests/tests.cc b/modules/seq/alg/tests/tests.cc index b7e455b67..1a5815a6a 100644 --- a/modules/seq/alg/tests/tests.cc +++ b/modules/seq/alg/tests/tests.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/pymod/__init__.py b/modules/seq/base/pymod/__init__.py index 5b595c7af..3bada618a 100644 --- a/modules/seq/base/pymod/__init__.py +++ b/modules/seq/base/pymod/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/seq/base/pymod/const_seq_list_export_def.hh b/modules/seq/base/pymod/const_seq_list_export_def.hh index baba81158..159857c3b 100644 --- a/modules/seq/base/pymod/const_seq_list_export_def.hh +++ b/modules/seq/base/pymod/const_seq_list_export_def.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/pymod/export_sequence.cc b/modules/seq/base/pymod/export_sequence.cc index b3632fc50..454245778 100644 --- a/modules/seq/base/pymod/export_sequence.cc +++ b/modules/seq/base/pymod/export_sequence.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/pymod/wrap_seq.cc b/modules/seq/base/pymod/wrap_seq.cc index b9fde4d11..5170a035f 100644 --- a/modules/seq/base/pymod/wrap_seq.cc +++ b/modules/seq/base/pymod/wrap_seq.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/aligned_column.cc b/modules/seq/base/src/aligned_column.cc index e07e828b5..5960a04ee 100644 --- a/modules/seq/base/src/aligned_column.cc +++ b/modules/seq/base/src/aligned_column.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/aligned_column.hh b/modules/seq/base/src/aligned_column.hh index 75bdf6fd3..5b197d733 100644 --- a/modules/seq/base/src/aligned_column.hh +++ b/modules/seq/base/src/aligned_column.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/aligned_column_iterator.hh b/modules/seq/base/src/aligned_column_iterator.hh index 5967d65f4..95bef716e 100644 --- a/modules/seq/base/src/aligned_column_iterator.hh +++ b/modules/seq/base/src/aligned_column_iterator.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/aligned_region.cc b/modules/seq/base/src/aligned_region.cc index fc4a3c6d6..41234a8ea 100644 --- a/modules/seq/base/src/aligned_region.cc +++ b/modules/seq/base/src/aligned_region.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/aligned_region.hh b/modules/seq/base/src/aligned_region.hh index ca8166ee1..2c197d35c 100644 --- a/modules/seq/base/src/aligned_region.hh +++ b/modules/seq/base/src/aligned_region.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/alignment_handle.cc b/modules/seq/base/src/alignment_handle.cc index bf2c12fdf..c39856e93 100644 --- a/modules/seq/base/src/alignment_handle.cc +++ b/modules/seq/base/src/alignment_handle.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/alignment_handle.hh b/modules/seq/base/src/alignment_handle.hh index 823e78be1..151506d25 100644 --- a/modules/seq/base/src/alignment_handle.hh +++ b/modules/seq/base/src/alignment_handle.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/impl/sequence_impl.cc b/modules/seq/base/src/impl/sequence_impl.cc index a99ea9b63..a04dcd0d4 100644 --- a/modules/seq/base/src/impl/sequence_impl.cc +++ b/modules/seq/base/src/impl/sequence_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/impl/sequence_impl.hh b/modules/seq/base/src/impl/sequence_impl.hh index f89b3c4bf..357dbc942 100644 --- a/modules/seq/base/src/impl/sequence_impl.hh +++ b/modules/seq/base/src/impl/sequence_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/impl/sequence_impl_fw.hh b/modules/seq/base/src/impl/sequence_impl_fw.hh index edfe79036..233afacba 100644 --- a/modules/seq/base/src/impl/sequence_impl_fw.hh +++ b/modules/seq/base/src/impl/sequence_impl_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/impl/sequence_list_impl.cc b/modules/seq/base/src/impl/sequence_list_impl.cc index 16759dbcf..f0ef01531 100644 --- a/modules/seq/base/src/impl/sequence_list_impl.cc +++ b/modules/seq/base/src/impl/sequence_list_impl.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/impl/sequence_list_impl.hh b/modules/seq/base/src/impl/sequence_list_impl.hh index ab382b8c8..7be941f73 100644 --- a/modules/seq/base/src/impl/sequence_list_impl.hh +++ b/modules/seq/base/src/impl/sequence_list_impl.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/impl/sequence_list_impl_fw.hh b/modules/seq/base/src/impl/sequence_list_impl_fw.hh index 7c6a40c30..095d21b30 100644 --- a/modules/seq/base/src/impl/sequence_list_impl_fw.hh +++ b/modules/seq/base/src/impl/sequence_list_impl_fw.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/impl/sequence_list_iterator.hh b/modules/seq/base/src/impl/sequence_list_iterator.hh index 384662e33..9af6bbaab 100644 --- a/modules/seq/base/src/impl/sequence_list_iterator.hh +++ b/modules/seq/base/src/impl/sequence_list_iterator.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/invalid_sequence.hh b/modules/seq/base/src/invalid_sequence.hh index 453916403..da74ebd9c 100644 --- a/modules/seq/base/src/invalid_sequence.hh +++ b/modules/seq/base/src/invalid_sequence.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/module_config.hh b/modules/seq/base/src/module_config.hh index 8b4139816..e01b2e96f 100644 --- a/modules/seq/base/src/module_config.hh +++ b/modules/seq/base/src/module_config.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/sequence_handle.cc b/modules/seq/base/src/sequence_handle.cc index 13063990d..6991a14f7 100644 --- a/modules/seq/base/src/sequence_handle.cc +++ b/modules/seq/base/src/sequence_handle.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/sequence_handle.hh b/modules/seq/base/src/sequence_handle.hh index 923dec13f..8d370e59e 100644 --- a/modules/seq/base/src/sequence_handle.hh +++ b/modules/seq/base/src/sequence_handle.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/sequence_list.cc b/modules/seq/base/src/sequence_list.cc index 8894b9bd8..699a7a0eb 100644 --- a/modules/seq/base/src/sequence_list.cc +++ b/modules/seq/base/src/sequence_list.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/sequence_list.hh b/modules/seq/base/src/sequence_list.hh index eb39f158a..62eea1041 100644 --- a/modules/seq/base/src/sequence_list.hh +++ b/modules/seq/base/src/sequence_list.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/sequence_op.cc b/modules/seq/base/src/sequence_op.cc index f1cec43e9..c502367f1 100644 --- a/modules/seq/base/src/sequence_op.cc +++ b/modules/seq/base/src/sequence_op.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/sequence_op.hh b/modules/seq/base/src/sequence_op.hh index 491da110f..d3f9fc6a1 100644 --- a/modules/seq/base/src/sequence_op.hh +++ b/modules/seq/base/src/sequence_op.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/views_from_sequences.cc b/modules/seq/base/src/views_from_sequences.cc index dad47106b..1ef113248 100644 --- a/modules/seq/base/src/views_from_sequences.cc +++ b/modules/seq/base/src/views_from_sequences.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/src/views_from_sequences.hh b/modules/seq/base/src/views_from_sequences.hh index 1a46965b1..363319d4a 100644 --- a/modules/seq/base/src/views_from_sequences.hh +++ b/modules/seq/base/src/views_from_sequences.hh @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/tests/test_aligned_column.cc b/modules/seq/base/tests/test_aligned_column.cc index 757c8d8cb..17e1ec6f0 100644 --- a/modules/seq/base/tests/test_aligned_column.cc +++ b/modules/seq/base/tests/test_aligned_column.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/tests/test_aligned_region.cc b/modules/seq/base/tests/test_aligned_region.cc index f22eb84bc..cc408f41c 100644 --- a/modules/seq/base/tests/test_aligned_region.cc +++ b/modules/seq/base/tests/test_aligned_region.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/tests/test_alignment.cc b/modules/seq/base/tests/test_alignment.cc index b4ee98a40..d4d1aca4e 100644 --- a/modules/seq/base/tests/test_alignment.cc +++ b/modules/seq/base/tests/test_alignment.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/tests/test_sequence.cc b/modules/seq/base/tests/test_sequence.cc index d628e14dd..0d8811413 100644 --- a/modules/seq/base/tests/test_sequence.cc +++ b/modules/seq/base/tests/test_sequence.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/modules/seq/base/tests/tests.cc b/modules/seq/base/tests/tests.cc index add126960..4d3b8b161 100644 --- a/modules/seq/base/tests/tests.cc +++ b/modules/seq/base/tests/tests.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 diff --git a/scripts/dng.bat.in b/scripts/dng.bat.in index 4e85a119a..fba653b93 100644 --- a/scripts/dng.bat.in +++ b/scripts/dng.bat.in @@ -2,7 +2,7 @@ REM ------------------------------------------------------------------------------ REM This file is part of the OpenStructure project <www.openstructure.org> REM -REM Copyright (C) 2008-2010 by the OpenStructure authors +REM Copyright (C) 2008-2011 by the OpenStructure authors REM REM This library is free software; you can redistribute it and/or modify it under REM the terms of the GNU Lesser General Public License as published by the Free diff --git a/scripts/dng.in b/scripts/dng.in index aecd82ed9..2d41fc631 100755 --- a/scripts/dng.in +++ b/scripts/dng.in @@ -2,7 +2,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/scripts/dng_cl.in b/scripts/dng_cl.in index b693055bb..bdffbb19a 100755 --- a/scripts/dng_cl.in +++ b/scripts/dng_cl.in @@ -2,7 +2,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/scripts/gipltng.bat.in b/scripts/gipltng.bat.in index 84152e9be..8c69318e4 100644 --- a/scripts/gipltng.bat.in +++ b/scripts/gipltng.bat.in @@ -2,7 +2,7 @@ REM ------------------------------------------------------------------------------ REM This file is part of the OpenStructure project <www.openstructure.org> REM -REM Copyright (C) 2008-2010 by the OpenStructure authors +REM Copyright (C) 2008-2011 by the OpenStructure authors REM REM This library is free software; you can redistribute it and/or modify it under REM the terms of the GNU Lesser General Public License as published by the Free diff --git a/scripts/gipltng.in b/scripts/gipltng.in index 0c30b759c..0f06c53fd 100755 --- a/scripts/gipltng.in +++ b/scripts/gipltng.in @@ -2,7 +2,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/scripts/ost.bat.in b/scripts/ost.bat.in index 637a1caf5..27fb91247 100644 --- a/scripts/ost.bat.in +++ b/scripts/ost.bat.in @@ -2,7 +2,7 @@ REM ------------------------------------------------------------------------------ REM This file is part of the OpenStructure project <www.openstructure.org> REM -REM Copyright (C) 2008-2010 by the OpenStructure authors +REM Copyright (C) 2008-2011 by the OpenStructure authors REM REM This library is free software; you can redistribute it and/or modify it under REM the terms of the GNU Lesser General Public License as published by the Free diff --git a/scripts/ost.in b/scripts/ost.in index cacb82d60..28bba9e1d 100755 --- a/scripts/ost.in +++ b/scripts/ost.in @@ -2,7 +2,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 -- GitLab From dc0fc5fbe77e43e4cf06eddc5f7732d921f0341b Mon Sep 17 00:00:00 2001 From: Valerio Mariani <valerio.mariani@unibas.ch> Date: Mon, 21 Feb 2011 14:15:54 +0100 Subject: [PATCH 16/59] Updated the linux crete_bundle script --- deployment/linux/create_bundle.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/deployment/linux/create_bundle.py b/deployment/linux/create_bundle.py index 43e980f9d..a186f1e25 100644 --- a/deployment/linux/create_bundle.py +++ b/deployment/linux/create_bundle.py @@ -12,7 +12,7 @@ if len(sys.argv) < 2: print 'usage: create_bundle.py additional_label' sys.exit() -boost_string='\".so.1.40.0\"' +#boost_string='\".so.1.42.0\"' system_python_version='python2.6' system_python_bin='/usr/bin/'+system_python_version system_python_libs='/usr/lib/'+system_python_version @@ -41,9 +41,8 @@ else: libdir='lib' archstring='32bit' date_pattern='%Y-%b-%d' -build=str(datetime.datetime.now()) -stamp=datetime.datetime.strptime(build, date_pattern) -directory_name='openstructure-linux-'+archstring+'-'+additional_label+stamp +build=datetime.date.today() +directory_name='openstructure-linux-'+archstring+'-'+additional_label+'-'+str(build) print 'Hardcoding package python binary path in openstructure executables' subprocess.call('mv scripts/ost.in scripts/ost.in.backup',shell=True,cwd='../../') subprocess.call('sed "s/@PYTHON_BINARY@/\$DNG_ROOT\/bin\/'+python_bin_in_bundle+'/g" scripts/ost.in.backup > scripts/ost.in.prepreprepre',shell=True,cwd='../../') @@ -60,12 +59,14 @@ subprocess.call('sed "s/\#export QT_PLUGIN_PATH/ export QT_PLUGIN_PATH/g" script #subprocess.call('wget ftp://ftp.wwpdb.org/pub/pdb/data/monomers/components.cif', shell=True, cwd='../../') #print 'Compiling Openstructure' #subprocess.call('cmake ./ -DCMAKE_BUILD_TYPE=Release -DPREFIX='+directory_name+' -DBoost_COMPILER='+boost_string+'-DENABLE_IMG=OFF -DENABLE_UI=OFF -DENABLE_GFX=OFF', shell=True,cwd='../../') +#subprocess.call('cmake ./ -DCMAKE_BUILD_TYPE=Release -DPREFIX='+directory_name+' s-DENABLE_IMG=OFF -DENABLE_UI=OFF -DENABLE_GFX=OFF', shell=True,cwd='../../') #subprocess.call('make -j5',shell=True,cwd='../../') #print 'Converting Chemlib dictionary' #subprocess.call('stage/bin/chemdict_tool create components.cif compounds.chemlib', shell=True, cwd='../../') #print '\nStaging Chemlib dictionary' print 'Compiling Openstructure' -subprocess.call('cmake ./ -DCMAKE_BUILD_TYPE=Release -DPREFIX='+directory_name+' -DBoost_COMPILER='+boost_string+' -DCOMPOUND_LIB=ChemLib/compounds.chemlib -DENABLE_IMG=ON -DENABLE_UI=ON -DENABLE_GFX=ON -DOPTIMIZE=ON',shell=True,cwd='../../') +#subprocess.call('cmake ./ -DCMAKE_BUILD_TYPE=Release -DPREFIX='+directory_name+' -DBoost_COMPILER='+boost_string+' -DCOMPOUND_LIB=ChemLib/compounds.chemlib -DENABLE_IMG=ON -DENABLE_UI=ON -DENABLE_GFX=ON -DOPTIMIZE=ON',shell=True,cwd='../../') +subprocess.call('cmake ./ -DCMAKE_BUILD_TYPE=Release -DPREFIX='+directory_name+' -DCOMPOUND_LIB=ChemLib/compounds.chemlib -DENABLE_IMG=ON -DENABLE_UI=ON -DENABLE_GFX=ON -DOPTIMIZE=ON',shell=True,cwd='../../') subprocess.call('make -j2',shell=True,cwd='../../') print 'Removing obsolete packages and package directory' subprocess.call('rm -fr openstructure-linux*',shell=True,cwd='../../') -- GitLab From 439a6820e8bf5ebc2b611598a7f7ad31e0811867 Mon Sep 17 00:00:00 2001 From: Valerio Mariani <valerio.mariani@unibas.ch> Date: Mon, 21 Feb 2011 18:22:41 +0100 Subject: [PATCH 17/59] Further updated to create_bundle.py Removed some libraries that should not end up in the bundle --- deployment/linux/create_bundle.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deployment/linux/create_bundle.py b/deployment/linux/create_bundle.py index a186f1e25..5f074eba3 100644 --- a/deployment/linux/create_bundle.py +++ b/deployment/linux/create_bundle.py @@ -12,7 +12,10 @@ if len(sys.argv) < 2: print 'usage: create_bundle.py additional_label' sys.exit() +<<<<<<< HEAD #boost_string='\".so.1.42.0\"' +======= +>>>>>>> Further updated to create_bundle.py system_python_version='python2.6' system_python_bin='/usr/bin/'+system_python_version system_python_libs='/usr/lib/'+system_python_version @@ -21,7 +24,7 @@ second_system_python_libs='/usr/lib/pymodules/'+system_python_version python_bin_in_bundle='python' qt4_plugins='/usr/lib/qt4/plugins' additional_label=sys.argv[1] -list_of_excluded_libraries=['ld-linux','libexpat','libgcc_s','libglib','cmov','libice','libSM','libX','libg','libGL.so','libfontconfig','libfreetype','libdrm','libxcb','libICE'] +list_of_excluded_libraries=['ld-linux','libexpat','libgcc_s','libglib','cmov','libice','libSM','libX','libg','libGL.so','libfontconfig','libfreetype','libdrm','libxcb','libICE','libnvidia','libc'] currdir=os.getcwd() if currdir.find('deployment')==-1 or currdir.find('linux')==-1: print '\n' -- GitLab From 5b5b3ba9b9545c52aae094f02d91e00f07938e72 Mon Sep 17 00:00:00 2001 From: Valerio Mariani <valerio.mariani@unibas.ch> Date: Mon, 21 Feb 2011 19:01:25 +0100 Subject: [PATCH 18/59] Fixed a problem with merge of create_bundle.py --- deployment/linux/create_bundle.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/deployment/linux/create_bundle.py b/deployment/linux/create_bundle.py index 5f074eba3..cf0ce5f61 100644 --- a/deployment/linux/create_bundle.py +++ b/deployment/linux/create_bundle.py @@ -12,10 +12,6 @@ if len(sys.argv) < 2: print 'usage: create_bundle.py additional_label' sys.exit() -<<<<<<< HEAD -#boost_string='\".so.1.42.0\"' -======= ->>>>>>> Further updated to create_bundle.py system_python_version='python2.6' system_python_bin='/usr/bin/'+system_python_version system_python_libs='/usr/lib/'+system_python_version -- GitLab From e78ceba9c7ceb18a5adfb3207c62f99d5c05c737 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Mon, 21 Feb 2011 22:20:57 +0100 Subject: [PATCH 19/59] fix example --- examples/code_fragments/entity/gfx_selection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/code_fragments/entity/gfx_selection.py b/examples/code_fragments/entity/gfx_selection.py index 7297a7e9d..5b3a92d3a 100644 --- a/examples/code_fragments/entity/gfx_selection.py +++ b/examples/code_fragments/entity/gfx_selection.py @@ -3,7 +3,7 @@ go=gfx.Entity("test",eh.CreateFullView()) ev = eh.Select(mol.Query("rnum=2,3,8,13")) go.SetSelection(ev) go.SetRenderMode(gfx.RenderMode.CUSTOM) -go.SetColor(gfx.Color(0xffff00),"(ele=C and rnum=1:4)") +go.SetColor(gfx.YELLOW,"(ele=C and rnum=1:4)") scene.Add(go) scene.SetCenter(go.GetCenter()) -- GitLab From 29332b5040ee3857d4e62c70042090a2945acc0c Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Mon, 21 Feb 2011 22:31:57 +0100 Subject: [PATCH 20/59] added hint on how to disable ssl verification when cloning git repository --- modules/doc/install.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/doc/install.rst b/modules/doc/install.rst index 525561543..b0c8381db 100644 --- a/modules/doc/install.rst +++ b/modules/doc/install.rst @@ -70,6 +70,16 @@ OpenStructure uses `git` as the revision control system. The main repository can The above command will clone OpenStructre into the directory called `directory-name`. If omitted, the directory will be called ost. Alternatively, you might consider getting one of the nightly source code snapshots from the `downloads section <http://www.openstructure.org/downloads/>`_. +.. note:: + + Some version of curl have have trouble with the certificate of the + OpenStructure git server and fail to clone the repository. To work around + this, disable the SLL certificate verification with the following command: + + .. code-block:: bash + + git config --global http.sslVerify false + Configuring -------------------------------------------------------------------------------- -- GitLab From cecf29da5f3ab4e98eebd22f17d271111073f42f Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Mon, 21 Feb 2011 22:39:22 +0100 Subject: [PATCH 21/59] fix typo --- modules/doc/install.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/doc/install.rst b/modules/doc/install.rst index b0c8381db..0c415c5fb 100644 --- a/modules/doc/install.rst +++ b/modules/doc/install.rst @@ -74,7 +74,7 @@ The above command will clone OpenStructre into the directory called `directory-n Some version of curl have have trouble with the certificate of the OpenStructure git server and fail to clone the repository. To work around - this, disable the SLL certificate verification with the following command: + this, disable the SSL certificate verification with the following command: .. code-block:: bash -- GitLab From 5e6e15faec390bcc448adb1c5e130b44df716d46 Mon Sep 17 00:00:00 2001 From: haasj <juergen.haas@unibas.ch> Date: Tue, 22 Feb 2011 14:32:06 +0100 Subject: [PATCH 22/59] fixing cartoon renderer segfault in windows --- modules/gfx/src/impl/cartoon_renderer.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/gfx/src/impl/cartoon_renderer.cc b/modules/gfx/src/impl/cartoon_renderer.cc index d9b4577dd..73c8d63e9 100644 --- a/modules/gfx/src/impl/cartoon_renderer.cc +++ b/modules/gfx/src/impl/cartoon_renderer.cc @@ -302,8 +302,11 @@ void CartoonRenderer::rebuild_spline_obj(IndexedVertexArray& va, options_->GetStrandThickness()+factor, options_->GetStrandProfileType(), options_->GetStrandEcc())); // profile 2 = strand - profiles.push_back(profiles.back()); // profile 3==2, strand - + TraceProfile prof=profiles.back(); +// do not ever change this back to profiles.push_back(profiles.back()); it segfaults on windows +// or you will meet two new friends of yours :) +// looks like a compiler bug + profiles.push_back(prof); // profile 3==2, strand profiles.push_back(get_circ_profile(detail, 1.7*options_->GetStrandWidth()+factor, 1.1*options_->GetStrandThickness()+factor, -- GitLab From 489b6a402e0eeefaf06e4054297822ffece20cb4 Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Sat, 19 Feb 2011 14:59:28 -0500 Subject: [PATCH 23/59] added string glob in query --- modules/mol/base/src/impl/CMakeLists.txt | 1 + modules/mol/base/src/impl/query_ast.cc | 56 +++++++++++++++++-- modules/mol/base/src/impl/query_ast.hh | 34 +++++++---- modules/mol/base/src/impl/query_ast_fw.hh | 41 ++++++++++++++ modules/mol/base/src/impl/query_impl.cc | 16 +++--- modules/mol/base/src/query_state.cc | 39 ++++++------- modules/mol/base/src/query_state.hh | 7 ++- modules/mol/base/tests/test_query.cc | 11 ++++ .../mol/base/tests/test_query_standalone.cc | 43 ++++++++++++++ 9 files changed, 203 insertions(+), 45 deletions(-) create mode 100644 modules/mol/base/src/impl/query_ast_fw.hh create mode 100644 modules/mol/base/tests/test_query_standalone.cc diff --git a/modules/mol/base/src/impl/CMakeLists.txt b/modules/mol/base/src/impl/CMakeLists.txt index 45a453ac1..4ee2d05bc 100644 --- a/modules/mol/base/src/impl/CMakeLists.txt +++ b/modules/mol/base/src/impl/CMakeLists.txt @@ -30,6 +30,7 @@ entity_impl_fw.hh fragment_impl.hh fragment_impl_fw.hh query_ast.hh +query_ast_fw.hh query_impl.hh query_impl_fw.hh residue_impl.hh diff --git a/modules/mol/base/src/impl/query_ast.cc b/modules/mol/base/src/impl/query_ast.cc index 45cd0dabc..697ff173f 100644 --- a/modules/mol/base/src/impl/query_ast.cc +++ b/modules/mol/base/src/impl/query_ast.cc @@ -24,7 +24,11 @@ namespace ost { namespace mol { namespace impl { - + +LogicOPNode::LogicOPNode(LogicOP op) + : lhs_(NULL), rhs_(NULL), op_(op) +{} + LogicOPNode::~LogicOPNode() { if (rhs_) delete rhs_; @@ -109,10 +113,54 @@ const geom::Vec3& WithinParam::GetCenter() const { return center_; } -LogicOPNode::LogicOPNode(LogicOP op) - : lhs_(NULL), rhs_(NULL), op_(op) { - +StringOrRegexParam::StringOrRegexParam(): + is_regex_(false), r_(), s_() +{} + +StringOrRegexParam::StringOrRegexParam(const String& s): + is_regex_(false),r_(),s_(s) +{ + for(String::const_iterator it=s.begin();it!=s.end();++it) { + if((*it)=='?' || (*it)=='*') { + is_regex_=true; + break; + } + } + + if(is_regex_) { + std::ostringstream e; + for(String::const_iterator it=s.begin();it!=s.end();++it) { + if((*it)=='?') { + e << "."; + } else if((*it)=='*') { + e << ".*"; + } else { + e << *it; + } + } + //std::cerr << "assembling regex [" << e.str() << "]... "; + r_=boost::regex(e.str()); + //std::cerr << "done" << std::endl; + } +} + +bool StringOrRegexParam::Match(const String& s) const +{ + if(is_regex_) { + //std::cerr << "matching regex to [" << s << "]... "; + bool result = boost::regex_match(s,r_); + //std::cerr << "done" << std::endl; + return result; + } + return s==s_; +} + +bool StringOrRegexParam::operator==(const StringOrRegexParam& o) const +{ + if(is_regex_) return r_==o.r_; + return s_==o.s_; } + Node* Node::GetParent() { return parent_; } diff --git a/modules/mol/base/src/impl/query_ast.hh b/modules/mol/base/src/impl/query_ast.hh index 50cd4a670..2f46ec499 100644 --- a/modules/mol/base/src/impl/query_ast.hh +++ b/modules/mol/base/src/impl/query_ast.hh @@ -19,18 +19,22 @@ #ifndef OST_QUERY_AST_HH #define OST_QUERY_AST_HH +#include <boost/regex.hpp> + #include <ost/mol/module_config.hh> #include <boost/variant.hpp> #include <ost/geom/vec3.hh> #include <ost/mol/view_type_fw.hh> #include <ost/mol/property_id.hh> +#include "query_ast_fw.hh" + namespace ost { namespace mol { namespace impl { /// holds the right and left hand operand of a within statement. The lefthand -/// operand is a distance in Anstrom, the righthand parameter may both be -/// a lazily bound reference to a point cloud (that is only known at) -/// instantiation time or a vector. +/// operand is a distance in Angstrom, the righthand parameter may both be +/// a lazily bound reference to a point cloud (that is only known at +/// instantiation time) or a vector. class DLLEXPORT_OST_MOL WithinParam { public: WithinParam(const geom::Vec3& center, float radius); @@ -50,7 +54,21 @@ private: int lazily_bound_ref_; }; -typedef boost::variant<int, float, String, WithinParam> ParamType; +// holds either a simple string or a full regex, constructed from a glob-style string +class DLLEXPORT_OST_MOL StringOrRegexParam { + public: + StringOrRegexParam(); + explicit StringOrRegexParam(const String& s); + bool Match(const String& s) const; + bool operator==(const StringOrRegexParam&) const; + const String& str() const {return s_;} + private: + bool is_regex_; + boost::regex r_; + String s_; +}; + +typedef boost::variant<int, float, WithinParam, StringOrRegexParam> ParamType; // AST node, used internally for building the AST tree. class DLLEXPORT_OST_MOL Node { @@ -66,10 +84,6 @@ private: Node* parent_; }; -typedef enum { - LOP_OR, LOP_AND -} LogicOP; - class DLLEXPORT_OST_MOL LogicOPNode : public Node { @@ -104,10 +118,6 @@ private: LogicOP op_; }; -typedef enum { - COP_EQ, COP_NEQ, COP_GE, COP_LE, COP_LT, COP_GT -} CompOP; - class DLLEXPORT_OST_MOL SelNode : public Node { public: diff --git a/modules/mol/base/src/impl/query_ast_fw.hh b/modules/mol/base/src/impl/query_ast_fw.hh new file mode 100644 index 000000000..4d69a9bf6 --- /dev/null +++ b/modules/mol/base/src/impl/query_ast_fw.hh @@ -0,0 +1,41 @@ +//------------------------------------------------------------------------------ +// This file is part of the OpenStructure project <www.openstructure.org> +// +// Copyright (C) 2008-2010 by the OpenStructure authors +// +// 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; either version 3.0 of the License, or (at your option) +// any later version. +// 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 OST_QUERY_AST_FW_HH +#define OST_QUERY_AST_FW_HH + +namespace ost { namespace mol { namespace impl { + + class WithinParam; + class StringOrRegexParam; + class Node; + class LogicOpNode; + class SelNode; + + typedef enum { + LOP_OR, LOP_AND + } LogicOP; + + typedef enum { + COP_EQ, COP_NEQ, COP_GE, COP_LE, COP_LT, COP_GT + } CompOP; + + +}}} + +#endif diff --git a/modules/mol/base/src/impl/query_impl.cc b/modules/mol/base/src/impl/query_impl.cc index 463daac1c..25d4e200a 100644 --- a/modules/mol/base/src/impl/query_impl.cc +++ b/modules/mol/base/src/impl/query_impl.cc @@ -148,7 +148,7 @@ QueryToken QueryLexer::LexNumericToken() { } bool is_ident_or_str(char c) { - static String allowed_chars("_"); + static String allowed_chars("_*?"); return isalnum(c) || allowed_chars.find_first_of(c)!=String::npos; } @@ -460,7 +460,7 @@ bool QueryImpl::ParseValue(const Prop& sel, const QueryToken& op, } return false; } else { - value=value_string; + value=StringOrRegexParam(value_string); } break; @@ -471,13 +471,13 @@ bool QueryImpl::ParseValue(const Prop& sel, const QueryToken& op, error_desc_.range=v.GetRange(); return false; } else if (sel.type==Prop::STRING) { - value=value_string; + value=StringOrRegexParam(value_string); } else value=ParamType(float(atof(value_string.c_str()))); break; case tok::IntegralValue: if (sel.type==Prop::STRING) { - value=value_string; + value=StringOrRegexParam(value_string); } else { if (sel.type==Prop::INT) { value=ParamType(atoi(value_string.c_str())); @@ -644,12 +644,12 @@ Node* QueryImpl::ParsePropValueExpr(QueryLexer& lexer) { } LogicOP lop=inversion_stack_.back() ? LOP_OR : LOP_AND; CompOP cop=inversion_stack_.back() ? COP_NEQ : COP_EQ; - ParamType cname_val(query_string_.substr(cname.GetValueRange().Loc, - cname.GetValueRange().Length).c_str()); + ParamType cname_val(StringOrRegexParam(query_string_.substr(cname.GetValueRange().Loc, + cname.GetValueRange().Length).c_str())); Prop cname_prop(Prop::CNAME, Prop::STRING, Prop::CHAIN); SelNode* cname_node=new SelNode(cname_prop, cop, cname_val); - ParamType aname_val(query_string_.substr(aname.GetValueRange().Loc, - aname.GetValueRange().Length).c_str()); + ParamType aname_val(StringOrRegexParam(query_string_.substr(aname.GetValueRange().Loc, + aname.GetValueRange().Length).c_str())); Prop aname_prop(Prop::ANAME, Prop::STRING, Prop::ATOM); SelNode* aname_node=new SelNode(aname_prop, cop, aname_val); ParamType rnum_val(atoi(query_string_.substr(rnum.GetValueRange().Loc, diff --git a/modules/mol/base/src/query_state.cc b/modules/mol/base/src/query_state.cc index 2f04aeecc..1e5c8d3a2 100644 --- a/modules/mol/base/src/query_state.cc +++ b/modules/mol/base/src/query_state.cc @@ -26,9 +26,12 @@ #include <ost/mol/impl/residue_impl.hh> #include <ost/mol/impl/atom_impl.hh> #include <ost/mol/impl/query_impl.hh> +#include <ost/mol/impl/query_ast.hh> namespace ost { namespace mol { +using namespace impl; + struct LazilyBoundRef { LazilyBoundRef& operator=(const LazilyBoundRef& rhs); //EntityView for now, will be generalized to a point cloud later on. @@ -41,21 +44,19 @@ struct LazilyBoundData { -using namespace impl; - -bool cmp_string(CompOP op,const String& lhs, const String& rhs) { +bool cmp_string(CompOP op,const String& lhs, const StringOrRegexParam& rhs) { switch (op) { case COP_EQ: - return lhs == rhs; + return rhs.Match(lhs); case COP_NEQ: - return lhs != rhs; + return !rhs.Match(lhs); default: assert(0 && "should be checked during ast generation"); return false; } } -bool QueryState::do_within(const geom::Vec3& pos, const impl::WithinParam& p, +bool QueryState::do_within(const geom::Vec3& pos, const WithinParam& p, CompOP op) { if (!p.HasValidRef()) { @@ -142,7 +143,7 @@ const LazilyBoundRef& QueryState::GetBoundObject(int i) const { -boost::logic::tribool QueryState::EvalChain(const impl::ChainImplPtr& c) { +boost::logic::tribool QueryState::EvalChain(const ChainImplPtr& c) { if (q_.empty_optimize_) return true; const std::set<size_t>& indices = q_.indices_[(int)Prop::CHAIN]; @@ -155,7 +156,7 @@ boost::logic::tribool QueryState::EvalChain(const impl::ChainImplPtr& c) { case Prop::CNAME: value = c->GetName(); s_[*i] = cmp_string(ss.comp_op, - boost::get<String>(ss.param),value); + value,boost::get<StringOrRegexParam>(ss.param)); continue; default: if (ss.sel_id>=Prop::CUSTOM) { @@ -176,7 +177,7 @@ boost::logic::tribool QueryState::EvalChain(const impl::ChainImplPtr& c) { return this->EvalStack(Prop::CHAIN); } -boost::logic::tribool QueryState::EvalResidue(const impl::ResidueImplPtr& r) { +boost::logic::tribool QueryState::EvalResidue(const ResidueImplPtr& r) { if (q_.empty_optimize_) return true; const std::set<size_t>& indices = q_.indices_[(int)Prop::RESIDUE]; @@ -191,7 +192,7 @@ boost::logic::tribool QueryState::EvalResidue(const impl::ResidueImplPtr& r) { case Prop::RNAME: str_value = r->GetKey(); s_[*i] = cmp_string(ss.comp_op,str_value, - boost::get<String>(ss.param)); + boost::get<StringOrRegexParam>(ss.param)); continue; case Prop::RNUM: int_value=r->GetNumber().GetNum(); @@ -222,7 +223,7 @@ boost::logic::tribool QueryState::EvalResidue(const impl::ResidueImplPtr& r) { s_[*i]=cmp_num<int>(ss.comp_op,int_value,boost::get<int>(ss.param)); break; case Prop::RTYPE: - p=boost::get<String>(ss.param); + p=boost::get<StringOrRegexParam>(ss.param).str(); if (p.length()>1) { bool b=false; if (p=="helix") { @@ -238,7 +239,7 @@ boost::logic::tribool QueryState::EvalResidue(const impl::ResidueImplPtr& r) { } else { str_value= String(1, (char)r->GetSecStructure()); s_[*i]=cmp_string(ss.comp_op,str_value, - boost::get<String>(ss.param)); + boost::get<StringOrRegexParam>(ss.param)); } break; case Prop::RINDEX: @@ -306,7 +307,7 @@ QueryState::QueryState() : s_(), q_(dummy_query_impl) { } -boost::logic::tribool QueryState::EvalAtom(const impl::AtomImplPtr& a) { +boost::logic::tribool QueryState::EvalAtom(const AtomImplPtr& a) { if (q_.empty_optimize_) return true; const std::set<size_t>& indices = q_.indices_[(int)Prop::ATOM]; @@ -320,32 +321,32 @@ boost::logic::tribool QueryState::EvalAtom(const impl::AtomImplPtr& a) { case Prop::ANAME: str_value = a->GetName(); s_[*i] = cmp_string(ss.comp_op,str_value, - boost::get<String>(ss.param)); + boost::get<StringOrRegexParam>(ss.param)); break; case Prop::AX: float_value=(a->GetPos())[0]; s_[*i]=cmp_num<Real>(ss.comp_op, float_value, - boost::get<float>(ss.param)); + boost::get<float>(ss.param)); break; case Prop::AY: float_value=(a->GetPos())[1]; s_[*i]=cmp_num<Real>(ss.comp_op, float_value, - boost::get<float>(ss.param)); + boost::get<float>(ss.param)); break; case Prop::AZ: float_value=(a->GetPos())[2]; s_[*i]=cmp_num<Real>(ss.comp_op, float_value, - boost::get<float>(ss.param)); + boost::get<float>(ss.param)); break; case Prop::OCC: float_value=a->GetOccupancy(); s_[*i]=cmp_num<Real>(ss.comp_op, float_value, - boost::get<float>(ss.param)); + boost::get<float>(ss.param)); break; case Prop::ELE: str_value = a->GetElement(); s_[*i] = cmp_string(ss.comp_op,str_value, - boost::get<String>(ss.param)); + boost::get<StringOrRegexParam>(ss.param)); break; case Prop::ABFAC: float_value=a->GetBFactor(); diff --git a/modules/mol/base/src/query_state.hh b/modules/mol/base/src/query_state.hh index 30c1cd069..ad6feffd2 100644 --- a/modules/mol/base/src/query_state.hh +++ b/modules/mol/base/src/query_state.hh @@ -22,9 +22,11 @@ /* Author: Marco Biasini */ + +#include <ost/geom/geom.hh> #include <ost/mol/impl/query_impl_fw.hh> -#include <ost/mol/impl/query_ast.hh> +#include <ost/mol/impl/query_ast_fw.hh> #include <ost/mol/handle_type_fw.hh> #include <boost/logic/tribool.hpp> @@ -37,7 +39,8 @@ namespace ost { namespace mol { - +class EntityHandle; +class EntityView; struct LazilyBoundData; struct LazilyBoundRef; diff --git a/modules/mol/base/tests/test_query.cc b/modules/mol/base/tests/test_query.cc index e8d56b6a1..b41ae5db0 100644 --- a/modules/mol/base/tests/test_query.cc +++ b/modules/mol/base/tests/test_query.cc @@ -85,6 +85,7 @@ void ensure_counts(EntityHandle e, const String& qs, int cc, int rc, int ac) { " for query String " << qs); } + void ensure_counts_v(EntityView src, const String& qs, int cc, int rc, int ac) { EntityView v; @@ -271,4 +272,14 @@ BOOST_AUTO_TEST_CASE(test_query_throw) BOOST_CHECK_NO_THROW(e.Select("gcnotsetprop:0=1")); } +BOOST_AUTO_TEST_CASE(test_glob) +{ + EntityHandle e=make_query_test_entity(); + ensure_counts(e, "rname=MET and aname=C*", 1, 1, 5); + ensure_counts(e, "rname=ARG and aname=N?1", 1, 1, 1); + ensure_counts(e, "rname=ARG and aname=NH?", 1, 1, 2); + ensure_counts(e, "rname=ARG and aname=\"*2\"", 1, 1, 1); + //ensure_counts(e, "rname=ARG and aname=N?", 1, 1, 1); +} + BOOST_AUTO_TEST_SUITE_END() diff --git a/modules/mol/base/tests/test_query_standalone.cc b/modules/mol/base/tests/test_query_standalone.cc new file mode 100644 index 000000000..abca4ee21 --- /dev/null +++ b/modules/mol/base/tests/test_query_standalone.cc @@ -0,0 +1,43 @@ +#include <ost/mol/mol.hh> + +using namespace ost; +using namespace ost::mol; + +int main() +{ + EntityHandle eh = CreateEntity(); + XCSEditor e=eh.EditXCS(); + ChainHandle chain = e.InsertChain("A"); + ResidueHandle res = e.AppendResidue(chain, "MET"); + e.InsertAtom(res, "N",geom::Vec3(21.609,35.384,56.705), "N"); + e.InsertAtom(res, "CA",geom::Vec3(20.601,35.494,57.793), "C"); + e.InsertAtom(res, "C",geom::Vec3(19.654,34.300,57.789), "C"); + e.InsertAtom(res, "O",geom::Vec3(18.447,34.456,57.595), "O"); + e.InsertAtom(res, "CB",geom::Vec3(19.789,36.783,57.639), "C"); + e.InsertAtom(res, "CG",geom::Vec3(20.629,38.055,57.606), "C"); + e.InsertAtom(res, "SD",geom::Vec3(21.638,38.325,59.084), "S"); + e.InsertAtom(res, "CE",geom::Vec3(23.233,37.697,58.529), "C"); + res = e.AppendResidue(chain, "ARG"); + e.InsertAtom(res, "N",geom::Vec3(20.202,33.112,58.011), "N"); + e.InsertAtom(res, "CA",geom::Vec3(19.396,31.903,58.033), "C"); + e.InsertAtom(res, "C",geom::Vec3(18.608,31.739,59.328), "C"); + e.InsertAtom(res, "O",geom::Vec3(17.651,30.965,59.381), "O"); + e.InsertAtom(res, "CB",geom::Vec3(20.284,30.681,57.801), "C"); + e.InsertAtom(res, "CG",geom::Vec3(20.665,30.488,56.342), "C"); + e.InsertAtom(res, "CD",geom::Vec3(21.557,29.281,56.154), "C"); + e.InsertAtom(res, "NE",geom::Vec3(22.931,29.557,56.551), "N"); + e.InsertAtom(res, "CZ",geom::Vec3(23.901,28.653,56.528), "C"); + e.InsertAtom(res, "NH1",geom::Vec3(23.640,27.417,56.130), "N"); + e.InsertAtom(res, "NH2",geom::Vec3(25.132,28.980,56.893), "N"); + + EntityView v=eh.Select("rname=MET and aname=C*"); + std::cerr << v.GetAtomCount() << std::endl; + v=eh.Select("rname=ARG and aname=N?1"); + std::cerr << v.GetAtomCount() << std::endl; + v=eh.Select("rname=ARG and aname=NH?"); + std::cerr << v.GetAtomCount() << std::endl; + v=eh.Select("rname=ARG and aname=\"*2\""); + std::cerr << v.GetAtomCount() << std::endl; + v=eh.Select("rname=ARG and aname=N?"); + std::cerr << v.GetAtomCount() << std::endl; +} -- GitLab From d0d84227f82ef0b312ae726d37a54124ceaf399a Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Tue, 22 Feb 2011 11:04:09 -0500 Subject: [PATCH 24/59] unit test tweaks --- modules/mol/base/tests/CMakeLists.txt | 3 +++ modules/mol/base/tests/test_query.cc | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/mol/base/tests/CMakeLists.txt b/modules/mol/base/tests/CMakeLists.txt index b29f1128e..e5d1c868c 100644 --- a/modules/mol/base/tests/CMakeLists.txt +++ b/modules/mol/base/tests/CMakeLists.txt @@ -17,3 +17,6 @@ set(OST_MOL_BASE_UNIT_TESTS ost_unittest(mol "${OST_MOL_BASE_UNIT_TESTS}") +# for valgrind debugging +# executable(NAME test_query_standalone SOURCES test_query_standalone.cc DEPENDS_ON mol) + diff --git a/modules/mol/base/tests/test_query.cc b/modules/mol/base/tests/test_query.cc index b41ae5db0..0e474611a 100644 --- a/modules/mol/base/tests/test_query.cc +++ b/modules/mol/base/tests/test_query.cc @@ -279,7 +279,8 @@ BOOST_AUTO_TEST_CASE(test_glob) ensure_counts(e, "rname=ARG and aname=N?1", 1, 1, 1); ensure_counts(e, "rname=ARG and aname=NH?", 1, 1, 2); ensure_counts(e, "rname=ARG and aname=\"*2\"", 1, 1, 1); - //ensure_counts(e, "rname=ARG and aname=N?", 1, 1, 1); + ensure_counts(e, "rname=ARG and aname=N?", 1, 1, 1); + ensure_counts(e, "rname=LEU and aname=\"?D?\"", 1, 1, 2); } BOOST_AUTO_TEST_SUITE_END() -- GitLab From 388855aa3ecb181bd459e0e04e9302f9d8d0a418 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Wed, 23 Feb 2011 09:20:31 +0100 Subject: [PATCH 25/59] some more property exports for atom/bond --- modules/mol/base/pymod/export_atom.cc | 2 +- modules/mol/base/pymod/export_bond.cc | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/mol/base/pymod/export_atom.cc b/modules/mol/base/pymod/export_atom.cc index 5891f4c10..48695455d 100644 --- a/modules/mol/base/pymod/export_atom.cc +++ b/modules/mol/base/pymod/export_atom.cc @@ -50,7 +50,6 @@ void export_Atom() return_value_policy<copy_const_reference>()), &AtomBase::SetName) .add_property("index", &AtomBase::GetIndex) - .def("GetRadius", &AtomBase::GetRadius) .def("GetElement", &AtomBase::GetElement, return_value_policy<copy_const_reference>()) @@ -85,6 +84,7 @@ void export_Atom() .def("GetBondList", &AtomHandle::GetBondList) .def("GetBondCount", &AtomHandle::GetBondCount) .def("GetEntity", &AtomHandle::GetEntity) + .add_property("bonds", &AtomHandle::GetBondList) .def("GetHandle", &AtomHandle::GetHandle) .add_property("handle", &AtomHandle::GetHandle) .add_property("entity", &AtomHandle::GetEntity) diff --git a/modules/mol/base/pymod/export_bond.cc b/modules/mol/base/pymod/export_bond.cc index 7309ef939..57670b4f6 100644 --- a/modules/mol/base/pymod/export_bond.cc +++ b/modules/mol/base/pymod/export_bond.cc @@ -26,7 +26,9 @@ using namespace boost::python; using namespace ost; using namespace ost::mol; + #include <ost/export_helper/generic_property_def.hh> +#include <ost/export_helper/vector.hh> void export_Bond() { @@ -38,8 +40,6 @@ void export_Bond() make_function(&BondHandle::GetFirst)) .add_property("second", make_function(&BondHandle::GetSecond)) - .add_property("other", - make_function(&BondHandle::GetOther)) .add_property("length", &BondHandle::GetLength) .add_property("bond_order", @@ -59,6 +59,7 @@ void export_Bond() generic_prop_def<BondHandle>(bond_handle); class_<BondHandleList>("BondHandleList", no_init) .def(vector_indexing_suite<BondHandleList>()) + .def(ost::VectorAdditions<BondHandleList>()) ; def("BondExists", &BondExists); } -- GitLab From 41f46392220a26fac3762d47ba8c562cb5008c03 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Wed, 23 Feb 2011 13:26:40 +0100 Subject: [PATCH 26/59] allow to clear selection with gfx_ent.selection=None --- modules/gfx/pymod/export_entity.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/gfx/pymod/export_entity.cc b/modules/gfx/pymod/export_entity.cc index 78dd67f09..c17fe7b3d 100644 --- a/modules/gfx/pymod/export_entity.cc +++ b/modules/gfx/pymod/export_entity.cc @@ -241,6 +241,11 @@ RenderOptionsPtr ent_ltrace_opts(Entity* ent) void set_selection(Entity* ent, object sel) { + object none; + if (sel==none) { + ent->SetSelection(ent->GetView().CreateEmptyView()); + return; + } try { String sel_string=extract<String>(sel); ent->SetSelection(ent->GetView().Select(sel_string)); -- GitLab From 877d5e121897abf06114f7acd38f0b8433f7f641 Mon Sep 17 00:00:00 2001 From: Valerio Mariani <valerio.mariani@unibas.ch> Date: Wed, 23 Feb 2011 13:32:39 +0100 Subject: [PATCH 27/59] Wrote ResidueNameToOneLetterCode and exported this and other utility functions in qa --- modules/qa/pymod/CMakeLists.txt | 1 + modules/qa/pymod/export_utilities.cc | 34 ++++++++++++++ modules/qa/pymod/wrap_qa.cc | 3 ++ modules/qa/src/amino_acids.cc | 69 +++++++++++++++++++++++++++- modules/qa/src/amino_acids.hh | 2 + 5 files changed, 108 insertions(+), 1 deletion(-) create mode 100644 modules/qa/pymod/export_utilities.cc diff --git a/modules/qa/pymod/CMakeLists.txt b/modules/qa/pymod/CMakeLists.txt index a63e9c2d9..c96819242 100644 --- a/modules/qa/pymod/CMakeLists.txt +++ b/modules/qa/pymod/CMakeLists.txt @@ -3,6 +3,7 @@ set(OST_QA_PYMOD_SOURCES export_torsion.cc export_packing.cc export_reduced.cc + export_utilities.cc wrap_qa.cc export_clash.cc ) diff --git a/modules/qa/pymod/export_utilities.cc b/modules/qa/pymod/export_utilities.cc new file mode 100644 index 000000000..31a6f2ab8 --- /dev/null +++ b/modules/qa/pymod/export_utilities.cc @@ -0,0 +1,34 @@ +//------------------------------------------------------------------------------ +// This file is part of the OpenStructure project <www.openstructure.org> +// +// Copyright (C) 2008-2011 by the OpenStructure authors +// +// 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; either version 3.0 of the License, or (at your option) +// any later version. +// 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 <boost/python.hpp> +#include <ost/qa/amino_acids.hh> +using namespace boost::python; +using namespace ost::qa; + + +void export_Utilties() +{ + + def ("ResidueToAminoAcid",&ResidueToAminoAcid); + def ("AminoAcidToResidueName",&AminoAcidToResidueName); + def ("OneLetterCodeToResidueName",&OneLetterCodeToResidueName); + def ("ResidueNameToOneLetterCode",&ResidueNameToOneLetterCode); + def ("OneLetterCodeToAminoAcid",&OneLetterCodeToAminoAcid); + +} \ No newline at end of file diff --git a/modules/qa/pymod/wrap_qa.cc b/modules/qa/pymod/wrap_qa.cc index 6c4e6fcac..14c66d90e 100644 --- a/modules/qa/pymod/wrap_qa.cc +++ b/modules/qa/pymod/wrap_qa.cc @@ -18,11 +18,13 @@ //------------------------------------------------------------------------------ #include <boost/python.hpp> + void export_Torsion(); void export_Interaction(); void export_Packing(); void export_Clash(); void export_Reduced(); +void export_Utilties(); BOOST_PYTHON_MODULE(_qa) { export_Torsion(); @@ -30,4 +32,5 @@ BOOST_PYTHON_MODULE(_qa) export_Packing(); export_Clash(); export_Reduced(); + export_Utilties(); } diff --git a/modules/qa/src/amino_acids.cc b/modules/qa/src/amino_acids.cc index 1dfefe0c5..5e5768634 100644 --- a/modules/qa/src/amino_acids.cc +++ b/modules/qa/src/amino_acids.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2011 by the OpenStructure authors +// Copyright (C) 2008-2010 by the OpenStructure authors // // 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 @@ -174,6 +174,73 @@ String OneLetterCodeToResidueName(char olc) } } +char ResidueNameToOneLetterCode(String rn) +{ + String upper_rn=rn; + std::transform(rn.begin(),rn.end(),rn.begin(),toupper); + if (upper_rn == "ALA") { + return 'A'; + } + if (upper_rn == "ARG") { + return 'R'; + } + if (upper_rn == "ASN") { + return 'N'; + } + if (upper_rn == "ASP") { + return 'D'; + } + if (upper_rn == "GLN") { + return 'Q'; + } + if (upper_rn == "GLU") { + return 'E'; + } + if (upper_rn == "LYS") { + return 'K'; + } + if (upper_rn == "SER") { + return 'S'; + } + if (upper_rn == "CYS") { + return 'C'; + } + if (upper_rn == "TYR") { + return 'Y'; + } + if (upper_rn == "TRP") { + return 'W'; + } + if (upper_rn == "THR") { + return 'T'; + } + if (upper_rn == "VAL") { + return 'V'; + } + if (upper_rn == "ILE") { + return 'I'; + } + if (upper_rn == "MET") { + return 'M'; + } + if (upper_rn == "LEU") { + return 'L'; + } + if (upper_rn == "GLY") { + return 'G'; + } + if (upper_rn == "PRO") { + return 'P'; + } + if (upper_rn == "HIS") { + return 'H'; + } + if (upper_rn == "PHE") { + return 'F'; + } + return 'X'; +} + AminoAcid OneLetterCodeToAminoAcid(char olc) { char upper_olc=toupper(olc); diff --git a/modules/qa/src/amino_acids.hh b/modules/qa/src/amino_acids.hh index 309726fe6..03521fa40 100644 --- a/modules/qa/src/amino_acids.hh +++ b/modules/qa/src/amino_acids.hh @@ -54,6 +54,8 @@ DLLEXPORT_OST_QA String OneLetterCodeToResidueName(char olc); DLLEXPORT_OST_QA AminoAcid OneLetterCodeToAminoAcid(char olc); +char DLLEXPORT_OST_QA ResidueNameToOneLetterCode(String rn); + class AminoAcidSetIterator : public std::iterator<std::forward_iterator_tag, AminoAcid> { public: -- GitLab From 48a94e1b1a6d52dbaae5171c15c94f9e8305d4af Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Fri, 18 Feb 2011 17:21:42 +0100 Subject: [PATCH 28/59] added glob-style access to GfxNodes --- modules/gfx/pymod/__init__.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/modules/gfx/pymod/__init__.py b/modules/gfx/pymod/__init__.py index 509d9c271..4dfc0fd64 100644 --- a/modules/gfx/pymod/__init__.py +++ b/modules/gfx/pymod/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2011 by the OpenStructure authors +# Copyright (C) 2008-2010 by the OpenStructure authors # # 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 @@ -141,7 +141,7 @@ def FitToScreen(gfx_ent, width=None, height=None, margin=0.01): scene.SetRTC(rtc) -class GfxNodeListAttrProxy(object): +class GfxNodeListAttrProxy: def __init__(self, node_list, name): self._node_list=node_list self._name=name @@ -164,11 +164,6 @@ class GfxNodeListProxy(object): return super(GfxNodeListProxy, self).__getattr__(name) return GfxNodeListAttrProxy(self._nodes, name) - def __dir__(self): - if len(self._nodes)==0: - return dir(None) - return dir(self._nodes[0]) - def __setattr__(self, name, value): if name.startswith('_'): super(GfxNodeListProxy, self).__setattr__(name, value) @@ -188,4 +183,4 @@ def _Match(scene, pattern="*"): return matches return GfxNodeListProxy(_Recurse("", Scene().root_node, pattern)) -SceneSingleton.Match=_Match +SceneSingleton.__getitem__=_Match -- GitLab From 7804d9aea05d6330f3b7aa044624e0f045c10f7e Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Sun, 20 Feb 2011 11:16:12 +0100 Subject: [PATCH 29/59] added overload to Entity.selection that accepts a string: ent.selection='aname=CA' is equivalent to ent.selection=ent.view.Select('aname=CA') --- t.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 t.py diff --git a/t.py b/t.py new file mode 100644 index 000000000..79d529917 --- /dev/null +++ b/t.py @@ -0,0 +1,5 @@ +import desost_util +e=io.LoadPDB("examples/demos/data/sh2.pdb") +desost_util.RunStride(e,True) +scene.Add(gfx.Entity("t",gfx.HSC,e)) + -- GitLab From 4d1cfd29a61aa2807d73ee39a7913663946a8da9 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Sun, 20 Feb 2011 11:43:47 +0100 Subject: [PATCH 30/59] don't overwrite scene.__getitem__ for glob-style access to scene objects It's breaking more complexcases, e.g. scene["model"].selection=scene["model"].view.Select('aname=CA') To use the glob-style access, use scene.Match("*") --- modules/gfx/pymod/__init__.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/modules/gfx/pymod/__init__.py b/modules/gfx/pymod/__init__.py index 4dfc0fd64..5788da8cf 100644 --- a/modules/gfx/pymod/__init__.py +++ b/modules/gfx/pymod/__init__.py @@ -141,7 +141,7 @@ def FitToScreen(gfx_ent, width=None, height=None, margin=0.01): scene.SetRTC(rtc) -class GfxNodeListAttrProxy: +class GfxNodeListAttrProxy(object): def __init__(self, node_list, name): self._node_list=node_list self._name=name @@ -164,6 +164,11 @@ class GfxNodeListProxy(object): return super(GfxNodeListProxy, self).__getattr__(name) return GfxNodeListAttrProxy(self._nodes, name) + def __dir__(self): + if len(self._nodes)==0: + return dir(None) + return dir(self._nodes[0]) + def __setattr__(self, name, value): if name.startswith('_'): super(GfxNodeListProxy, self).__setattr__(name, value) @@ -183,4 +188,4 @@ def _Match(scene, pattern="*"): return matches return GfxNodeListProxy(_Recurse("", Scene().root_node, pattern)) -SceneSingleton.__getitem__=_Match +SceneSingleton.Match=_Match -- GitLab From 7f8103e583671375d0742b7fd49fb00b4f44885d Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Mon, 21 Feb 2011 09:48:17 +0100 Subject: [PATCH 31/59] updated copyright notice --- modules/gfx/pymod/__init__.py | 2 +- modules/qa/src/amino_acids.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/gfx/pymod/__init__.py b/modules/gfx/pymod/__init__.py index 5788da8cf..509d9c271 100644 --- a/modules/gfx/pymod/__init__.py +++ b/modules/gfx/pymod/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2010 by the OpenStructure authors +# Copyright (C) 2008-2011 by the OpenStructure authors # # 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 diff --git a/modules/qa/src/amino_acids.cc b/modules/qa/src/amino_acids.cc index 5e5768634..7111844e3 100644 --- a/modules/qa/src/amino_acids.cc +++ b/modules/qa/src/amino_acids.cc @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // This file is part of the OpenStructure project <www.openstructure.org> // -// Copyright (C) 2008-2010 by the OpenStructure authors +// Copyright (C) 2008-2011 by the OpenStructure authors // // 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 -- GitLab From 2e871fa72e046fcd7fa5301c2e08e590cb6b0561 Mon Sep 17 00:00:00 2001 From: Valerio Mariani <valerio.mariani@unibas.ch> Date: Mon, 21 Feb 2011 14:15:54 +0100 Subject: [PATCH 32/59] Updated the linux crete_bundle script --- deployment/linux/create_bundle.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deployment/linux/create_bundle.py b/deployment/linux/create_bundle.py index cf0ce5f61..a186f1e25 100644 --- a/deployment/linux/create_bundle.py +++ b/deployment/linux/create_bundle.py @@ -12,6 +12,7 @@ if len(sys.argv) < 2: print 'usage: create_bundle.py additional_label' sys.exit() +#boost_string='\".so.1.42.0\"' system_python_version='python2.6' system_python_bin='/usr/bin/'+system_python_version system_python_libs='/usr/lib/'+system_python_version @@ -20,7 +21,7 @@ second_system_python_libs='/usr/lib/pymodules/'+system_python_version python_bin_in_bundle='python' qt4_plugins='/usr/lib/qt4/plugins' additional_label=sys.argv[1] -list_of_excluded_libraries=['ld-linux','libexpat','libgcc_s','libglib','cmov','libice','libSM','libX','libg','libGL.so','libfontconfig','libfreetype','libdrm','libxcb','libICE','libnvidia','libc'] +list_of_excluded_libraries=['ld-linux','libexpat','libgcc_s','libglib','cmov','libice','libSM','libX','libg','libGL.so','libfontconfig','libfreetype','libdrm','libxcb','libICE'] currdir=os.getcwd() if currdir.find('deployment')==-1 or currdir.find('linux')==-1: print '\n' -- GitLab From b815ee4ebb57e95758e04f6a5d3c6c654f67e0d5 Mon Sep 17 00:00:00 2001 From: Valerio Mariani <valerio.mariani@unibas.ch> Date: Mon, 21 Feb 2011 18:22:41 +0100 Subject: [PATCH 33/59] Further updated to create_bundle.py Removed some libraries that should not end up in the bundle --- deployment/linux/create_bundle.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deployment/linux/create_bundle.py b/deployment/linux/create_bundle.py index a186f1e25..5f074eba3 100644 --- a/deployment/linux/create_bundle.py +++ b/deployment/linux/create_bundle.py @@ -12,7 +12,10 @@ if len(sys.argv) < 2: print 'usage: create_bundle.py additional_label' sys.exit() +<<<<<<< HEAD #boost_string='\".so.1.42.0\"' +======= +>>>>>>> Further updated to create_bundle.py system_python_version='python2.6' system_python_bin='/usr/bin/'+system_python_version system_python_libs='/usr/lib/'+system_python_version @@ -21,7 +24,7 @@ second_system_python_libs='/usr/lib/pymodules/'+system_python_version python_bin_in_bundle='python' qt4_plugins='/usr/lib/qt4/plugins' additional_label=sys.argv[1] -list_of_excluded_libraries=['ld-linux','libexpat','libgcc_s','libglib','cmov','libice','libSM','libX','libg','libGL.so','libfontconfig','libfreetype','libdrm','libxcb','libICE'] +list_of_excluded_libraries=['ld-linux','libexpat','libgcc_s','libglib','cmov','libice','libSM','libX','libg','libGL.so','libfontconfig','libfreetype','libdrm','libxcb','libICE','libnvidia','libc'] currdir=os.getcwd() if currdir.find('deployment')==-1 or currdir.find('linux')==-1: print '\n' -- GitLab From f892f86e45b6208297b533617cc8e085c46784b2 Mon Sep 17 00:00:00 2001 From: Valerio Mariani <valerio.mariani@unibas.ch> Date: Mon, 21 Feb 2011 19:01:25 +0100 Subject: [PATCH 34/59] Fixed a problem with merge of create_bundle.py --- deployment/linux/create_bundle.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/deployment/linux/create_bundle.py b/deployment/linux/create_bundle.py index 5f074eba3..cf0ce5f61 100644 --- a/deployment/linux/create_bundle.py +++ b/deployment/linux/create_bundle.py @@ -12,10 +12,6 @@ if len(sys.argv) < 2: print 'usage: create_bundle.py additional_label' sys.exit() -<<<<<<< HEAD -#boost_string='\".so.1.42.0\"' -======= ->>>>>>> Further updated to create_bundle.py system_python_version='python2.6' system_python_bin='/usr/bin/'+system_python_version system_python_libs='/usr/lib/'+system_python_version -- GitLab From 333c9172483075b4365a2c484b5dd4f9e214709c Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Mon, 21 Feb 2011 22:31:57 +0100 Subject: [PATCH 35/59] added hint on how to disable ssl verification when cloning git repository --- modules/doc/install.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/doc/install.rst b/modules/doc/install.rst index 0c415c5fb..b0c8381db 100644 --- a/modules/doc/install.rst +++ b/modules/doc/install.rst @@ -74,7 +74,7 @@ The above command will clone OpenStructre into the directory called `directory-n Some version of curl have have trouble with the certificate of the OpenStructure git server and fail to clone the repository. To work around - this, disable the SSL certificate verification with the following command: + this, disable the SLL certificate verification with the following command: .. code-block:: bash -- GitLab From b219860554fc1fb41238c67de50828692bb973ee Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Mon, 21 Feb 2011 22:39:22 +0100 Subject: [PATCH 36/59] fix typo --- modules/doc/install.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/doc/install.rst b/modules/doc/install.rst index b0c8381db..0c415c5fb 100644 --- a/modules/doc/install.rst +++ b/modules/doc/install.rst @@ -74,7 +74,7 @@ The above command will clone OpenStructre into the directory called `directory-n Some version of curl have have trouble with the certificate of the OpenStructure git server and fail to clone the repository. To work around - this, disable the SLL certificate verification with the following command: + this, disable the SSL certificate verification with the following command: .. code-block:: bash -- GitLab From d607dbbbea06d5b80a6ce1d4617b05ee8b8e71e2 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Fri, 18 Feb 2011 17:21:42 +0100 Subject: [PATCH 37/59] added glob-style access to GfxNodes --- modules/gfx/pymod/__init__.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/modules/gfx/pymod/__init__.py b/modules/gfx/pymod/__init__.py index 509d9c271..4dfc0fd64 100644 --- a/modules/gfx/pymod/__init__.py +++ b/modules/gfx/pymod/__init__.py @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ # This file is part of the OpenStructure project <www.openstructure.org> # -# Copyright (C) 2008-2011 by the OpenStructure authors +# Copyright (C) 2008-2010 by the OpenStructure authors # # 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 @@ -141,7 +141,7 @@ def FitToScreen(gfx_ent, width=None, height=None, margin=0.01): scene.SetRTC(rtc) -class GfxNodeListAttrProxy(object): +class GfxNodeListAttrProxy: def __init__(self, node_list, name): self._node_list=node_list self._name=name @@ -164,11 +164,6 @@ class GfxNodeListProxy(object): return super(GfxNodeListProxy, self).__getattr__(name) return GfxNodeListAttrProxy(self._nodes, name) - def __dir__(self): - if len(self._nodes)==0: - return dir(None) - return dir(self._nodes[0]) - def __setattr__(self, name, value): if name.startswith('_'): super(GfxNodeListProxy, self).__setattr__(name, value) @@ -188,4 +183,4 @@ def _Match(scene, pattern="*"): return matches return GfxNodeListProxy(_Recurse("", Scene().root_node, pattern)) -SceneSingleton.Match=_Match +SceneSingleton.__getitem__=_Match -- GitLab From 5daf4d0644acce331a67e11d811070a8b95f465f Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Tue, 22 Feb 2011 12:44:29 -0500 Subject: [PATCH 38/59] fixed BZDNG-216: rendering issue in HSC mode --- modules/gfx/src/impl/backbone_trace.cc | 30 +++++++++++++++++++------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/modules/gfx/src/impl/backbone_trace.cc b/modules/gfx/src/impl/backbone_trace.cc index b890d76b4..a872c44c3 100644 --- a/modules/gfx/src/impl/backbone_trace.cc +++ b/modules/gfx/src/impl/backbone_trace.cc @@ -32,14 +32,18 @@ namespace { bool in_sequence(const mol::ResidueHandle& r1, const mol::ResidueHandle& r2, bool seqhack) { if(!r1.IsValid() || !r2.IsValid()) return false; - if(r1.GetChain()!=r2.GetChain()) return false; - mol::ResNum n1 = r1.GetNumber(); - mol::ResNum n2 = r2.GetNumber(); - if(n2.GetInsCode()!='\0') { - if(n1.NextInsertionCode()==n2) return true; + if(seqhack) { + if(r1.GetChain()!=r2.GetChain()) return false; + mol::ResNum n1 = r1.GetNumber(); + mol::ResNum n2 = r2.GetNumber(); + if(n2.GetInsCode()!='\0') { + if(n1.NextInsertionCode()==n2) return true; + } + if(mol::InSequence(r1,r2)) return true; + if(n1.GetNum()+1==n2.GetNum()) return true; + } else { + return mol::InSequence(r1,r2); } - if(mol::InSequence(r1,r2)) return true; - if(seqhack && n1.GetNum()+1==n2.GetNum()) return true; return false; } @@ -236,11 +240,21 @@ BackboneTrace BackboneTrace::CreateSubset(const mol::EntityView& subview) const NodeEntryList& nlist=*nitnit; for(NodeEntryList::const_iterator nit=nlist.begin();nit!=nlist.end();++nit) { if(subview.FindAtom(nit->atom).IsValid()) { + if(!new_nlist.empty()) { + if(!in_sequence(new_nlist.back().atom.GetResidue(),nit->atom.GetResidue(),seq_hack_)) { + if(new_nlist.size()>1) { + nrvo.node_list_list_.push_back(new_nlist); + } + new_nlist.clear(); + } + } new_nlist.push_back(*nit); } } if(!new_nlist.empty()) { - nrvo.node_list_list_.push_back(new_nlist); + if(new_nlist.size()>1) { + nrvo.node_list_list_.push_back(new_nlist); + } } } return nrvo; -- GitLab From 9b00ef5bd8cab68e0669841db63a0a935764db49 Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Tue, 22 Feb 2011 17:26:44 -0500 Subject: [PATCH 39/59] fixed mae loader connectivity logic; added generic peptide to heuristic builder --- modules/conop/src/heuristic_builder.cc | 26 +++++- modules/conop/src/heuristic_builder.hh | 3 + modules/conop/src/heuristic_connect_table.hh | 8 ++ modules/io/src/mol/entity_io_mae_handler.cc | 5 +- modules/io/src/mol/entity_io_mae_handler.hh | 83 -------------------- 5 files changed, 38 insertions(+), 87 deletions(-) diff --git a/modules/conop/src/heuristic_builder.cc b/modules/conop/src/heuristic_builder.cc index c23860e90..3fbff0b9d 100644 --- a/modules/conop/src/heuristic_builder.cc +++ b/modules/conop/src/heuristic_builder.cc @@ -109,7 +109,8 @@ ConnResEntry::TorsionEntryList ConnResEntry::GetTorsionList() const // actual builder HeuristicBuilder::HeuristicBuilder(): - emap_() + emap_(), + default_peptide_() { int def_entry_count = sizeof(heuristic_connect::def_entry_table)/sizeof(heuristic_connect::CONN_DEF_ENTRY); @@ -180,8 +181,11 @@ HeuristicBuilder::HeuristicBuilder(): entry.AddTors(tor_nam[0],tor_nam[1],tor_nam[2],tor_nam[3],tor_nam2); } - - emap_[def_entry.abbrev]=entry; + if(ec==0) { + default_peptide_=entry; + } else { + emap_[def_entry.abbrev]=entry; + } } LOG_DEBUG("done importing internal tables"); } @@ -294,6 +298,22 @@ void ConnectPrevNext(HeuristicBuilder* builder,mol::ResidueHandle res0, std::pair<detail::ConnResEntry,bool> res0_ret = builder->LookupResEntry(res0.GetKey()); std::pair<detail::ConnResEntry,bool> res1_ret = builder->LookupResEntry(res1.GetKey()); + if(!res0_ret.second) { + if(res0.FindAtom("N") && res0.FindAtom("CA") && res0.FindAtom("C")) { + LOG_DEBUG("using default peptide for " << res0.GetKey()); + res0_ret.first=builder->DefaultPeptide(); + res0_ret.second=true; + } + } + + if(!res1_ret.second) { + if(res1.FindAtom("N") && res1.FindAtom("CA") && res1.FindAtom("C")) { + LOG_DEBUG("using default peptide for " << res1.GetKey()); + res1_ret.first=builder->DefaultPeptide(); + res1_ret.second=true; + } + } + if(res0_ret.second && res1_ret.second) { detail::ConnResEntry& res0_centry=res0_ret.first; detail::ConnResEntry& res1_centry=res1_ret.first; diff --git a/modules/conop/src/heuristic_builder.hh b/modules/conop/src/heuristic_builder.hh index d6eca8b4d..05c9fe311 100644 --- a/modules/conop/src/heuristic_builder.hh +++ b/modules/conop/src/heuristic_builder.hh @@ -108,12 +108,15 @@ public: std::pair<detail::ConnResEntry,bool> LookupResEntry(const mol::ResidueKey& key); virtual void FillAtomProps(mol::AtomHandle atom); + + const detail::ConnResEntry& DefaultPeptide() const {return default_peptide_;} protected: void ConnectivityFromAtomNames(const mol::ResidueHandle& res, detail::ConnResEntry& centry, mol::AtomHandleList& unknown_atoms); private: detail::ConnResEntryMap emap_; + detail::ConnResEntry default_peptide_; }; diff --git a/modules/conop/src/heuristic_connect_table.hh b/modules/conop/src/heuristic_connect_table.hh index ae200aac1..69cd08920 100644 --- a/modules/conop/src/heuristic_connect_table.hh +++ b/modules/conop/src/heuristic_connect_table.hh @@ -41,6 +41,14 @@ struct CONN_DEF_ENTRY { }; CONN_DEF_ENTRY def_entry_table[]={ + // the first entry must be this generic one + {"Generic","___",'_', mol::ChemClass(mol::ChemClass::LPeptideLinking), + {"N","CA","C"},3, + {{-2,1}, {1,2}, {2,3}, {3,-3}},4, + { + },0, + {0, 0, 0, 0, 0, 0},6 + }, {"Alanine","ALA",'A', mol::ChemClass(mol::ChemClass::LPeptideLinking), {"N","CA","C","O","CB","OXT"},6, {{-2,1}, {1,2}, {2,3}, {3,4}, {2,5}, {3,-3}, {6, 3}},7, diff --git a/modules/io/src/mol/entity_io_mae_handler.cc b/modules/io/src/mol/entity_io_mae_handler.cc index 19c9e4067..7cccf154a 100644 --- a/modules/io/src/mol/entity_io_mae_handler.cc +++ b/modules/io/src/mol/entity_io_mae_handler.cc @@ -35,6 +35,7 @@ #include <ost/log.hh> #include <ost/conop/conop.hh> +#include <ost/conop/heuristic_builder.hh> #include <ost/mol/xcs_editor.hh> #include <ost/profile.hh> @@ -272,6 +273,7 @@ void MAEReader::add_atom(mol::EntityHandle ent, // finally add atom LOG_TRACE(" atom " << aname << " (" << ele << ") @" << apos); + ++atom_count_; mol::AtomHandle ah = editor.InsertAtom(curr_residue_, aname, apos, ele); } @@ -329,7 +331,8 @@ bool EntityIOMAEHandler::ProvidesExport(const boost::filesystem::path& loc, mol::EntityHandle LoadMAE(const String& file_name) { Profile profile_load("LoadMAE"); - conop::BuilderP builder = conop::Conopology::Instance().GetBuilder(); + //conop::BuilderP builder = conop::Conopology::Instance().GetBuilder(); + conop::BuilderP builder(new conop::HeuristicBuilder); MAEReader reader(file_name); mol::EntityHandle ent=mol::CreateEntity(); mol::XCSEditor editor=ent.EditXCS(mol::BUFFERED_EDIT); diff --git a/modules/io/src/mol/entity_io_mae_handler.hh b/modules/io/src/mol/entity_io_mae_handler.hh index d464e5ab6..9a50d6e3f 100644 --- a/modules/io/src/mol/entity_io_mae_handler.hh +++ b/modules/io/src/mol/entity_io_mae_handler.hh @@ -74,89 +74,6 @@ public: }; -typedef EntityIOHandlerFactory<EntityIOMAEHandler> EntityIOMAEHandlerFactory; - -mol::EntityHandle DLLEXPORT_OST_IO LoadMAE(const String& file_name); - -}} // ns - -#endif -//------------------------------------------------------------------------------ -// This file is part of the OpenStructure project <www.openstructure.org> -// -// Copyright (C) 2008-2011 by the OpenStructure authors -// -// 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; either version 3.0 of the License, or (at your option) -// any later version. -// 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 OST_IO_ENTITY_IO_PLUGIN_MAE_H -#define OST_IO_ENTITY_IO_PLUGIN_MAE_H - -#include <ost/io/mol/entity_io_handler.hh> - -#include <boost/iostreams/filtering_stream.hpp> -#include <boost/filesystem/fstream.hpp> - -namespace ost { namespace io { - -class DLLEXPORT_OST_IO MAEReader { -public: - MAEReader(const boost::filesystem::path& loc); - - void Import(mol::EntityHandle& ent); - -private: - - void add_atom(mol::EntityHandle ent, - mol::XCSEditor& editor,const std::string& s_aname, - const std::string& s_axpos, - const std::string& s_aypos, - const std::string& s_azpos, - const std::string& s_rname, - const std::string& s_rnum, - const std::string& s_cname); - - mol::ChainHandle curr_chain_; - mol::ResidueHandle curr_residue_; - int chain_count_; - int residue_count_; - int atom_count_; - boost::filesystem::ifstream infile_; - boost::iostreams::filtering_stream<boost::iostreams::input> in_; -}; - -class DLLEXPORT_OST_IO EntityIOMAEHandler: public EntityIOHandler { -public: - virtual void Import(mol::EntityHandle& ent, const boost::filesystem::path& loc); - - virtual void Export(const mol::EntityView& ent, - const boost::filesystem::path& loc) const; - - virtual void Import(mol::EntityHandle& ent, std::istream& stream); - - virtual void Export(const mol::EntityView& ent, std::ostream& stream) const; - - static bool ProvidesImport(const boost::filesystem::path& loc, - const String& format="auto"); - static bool ProvidesExport(const boost::filesystem::path& loc, - const String& format="auto"); - virtual bool RequiresBuilder() const; - - static String GetFormatName() { return String("Mae"); } - static String GetFormatDescription() { return String("MAEstro coordinate file format"); } -}; - - typedef EntityIOHandlerFactory<EntityIOMAEHandler> EntityIOMAEHandlerFactory; mol::EntityHandle DLLEXPORT_OST_IO LoadMAE(const String& file_name); -- GitLab From b9fd3da98d0d3a261df02598e2c2407c7bc8d73c Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Tue, 22 Feb 2011 17:53:14 -0500 Subject: [PATCH 40/59] fixed default outline (again); fixed superfluous rebuild for hidden objects --- modules/gfx/pymod/__init__.py | 2 +- modules/gfx/src/entity.cc | 28 ++++++++++++++++------------ modules/gfx/src/entity.hh | 1 + modules/gfx/src/gfx_object.cc | 4 ++++ modules/gfx/src/vertex_array.cc | 4 ++-- 5 files changed, 24 insertions(+), 15 deletions(-) diff --git a/modules/gfx/pymod/__init__.py b/modules/gfx/pymod/__init__.py index 4dfc0fd64..10afd277e 100644 --- a/modules/gfx/pymod/__init__.py +++ b/modules/gfx/pymod/__init__.py @@ -183,4 +183,4 @@ def _Match(scene, pattern="*"): return matches return GfxNodeListProxy(_Recurse("", Scene().root_node, pattern)) -SceneSingleton.__getitem__=_Match +SceneSingleton.Match=_Match diff --git a/modules/gfx/src/entity.cc b/modules/gfx/src/entity.cc index 317f74c53..fef28debb 100644 --- a/modules/gfx/src/entity.cc +++ b/modules/gfx/src/entity.cc @@ -75,7 +75,8 @@ Entity::Entity(const String& name, opacity_(1.0), blur_(false), blurf1_(1.0), - blurf2_(0.8) + blurf2_(0.8), + needs_update_(true) { init(RenderMode::SIMPLE); } @@ -327,26 +328,29 @@ void Entity::CacheBoundingBox() const bool Entity::UpdateIfNeeded() const { bool updated=false; - for (RendererMap::iterator i=renderer_.begin(), - e=renderer_.end(); i!=e; ++i) { - EntityRenderer* renderer =i->second; - if (renderer->IsDirty()) { - renderer->PrepareRendering(); - updated=true; + if(IsVisible()) { + for (RendererMap::iterator i=renderer_.begin(), + e=renderer_.end(); i!=e; ++i) { + EntityRenderer* renderer =i->second; + if (renderer->IsDirty()) { + renderer->PrepareRendering(); + updated=true; + } + renderer->VA().SetOpacity(opacity_); + } + if (updated) { + this->CacheBoundingBox(); } - renderer->VA().SetOpacity(opacity_); - } - if (updated) { - this->CacheBoundingBox(); } return updated; } void Entity::CustomPreRenderGL(bool update) { - if (update) { + if (update || needs_update_) { this->UpdateIfNeeded(); RefreshVA(); + needs_update_=false; } } diff --git a/modules/gfx/src/entity.hh b/modules/gfx/src/entity.hh index 0200b592b..a97192d39 100644 --- a/modules/gfx/src/entity.hh +++ b/modules/gfx/src/entity.hh @@ -311,6 +311,7 @@ private: bool blur_; float blurf1_; float blurf2_; + bool needs_update_; }; diff --git a/modules/gfx/src/gfx_object.cc b/modules/gfx/src/gfx_object.cc index cc09ada77..8a45e784b 100644 --- a/modules/gfx/src/gfx_object.cc +++ b/modules/gfx/src/gfx_object.cc @@ -58,7 +58,11 @@ GfxObj::GfxObj(const String& name): opacity_(1.0), smoothf_(0.0), outline_flag_(false), +#if defined (__APPLE__) + outline_mode_(2), +#else outline_mode_(1), +#endif c_ops_(), labels_(), use_occlusion_(false) diff --git a/modules/gfx/src/vertex_array.cc b/modules/gfx/src/vertex_array.cc index 4e42c234b..da764f97f 100644 --- a/modules/gfx/src/vertex_array.cc +++ b/modules/gfx/src/vertex_array.cc @@ -437,7 +437,7 @@ void IndexedVertexArray::RenderGL() glCullFace(GL_FRONT); glEnable(GL_CULL_FACE); glShadeModel(GL_FLAT); - if(outline_mode_==2) { + if(outline_mode_==1) { glCallList(outline_mat_dlist_); glEnable(GL_POLYGON_OFFSET_LINE); glEnable(GL_POLYGON_OFFSET_POINT); @@ -447,7 +447,7 @@ void IndexedVertexArray::RenderGL() glEnable(GL_LINE_SMOOTH); glDisable(GL_POINT_SMOOTH); // kills selfx fragment shader if enabled glDisable(GL_POLYGON_SMOOTH); - } else if(outline_mode_==1) { + } else if(outline_mode_==2) { glCallList(outline_mat_dlist_); glEnable(GL_POLYGON_OFFSET_LINE); glPolygonOffset(10.0,1.0); -- GitLab From fd461a860aed424d6fcac523f5595579a3e46029 Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Wed, 23 Feb 2011 10:25:39 -0500 Subject: [PATCH 41/59] fixed bug introduced in b9fd3da98d (fixed superfluous rebuild of hidden objects) --- modules/gfx/src/entity.cc | 3 +++ modules/gfx/src/entity.hh | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/gfx/src/entity.cc b/modules/gfx/src/entity.cc index fef28debb..90d16501b 100644 --- a/modules/gfx/src/entity.cc +++ b/modules/gfx/src/entity.cc @@ -341,6 +341,9 @@ bool Entity::UpdateIfNeeded() const if (updated) { this->CacheBoundingBox(); } + needs_update_=false; + } else { + needs_update_=true; } return updated; } diff --git a/modules/gfx/src/entity.hh b/modules/gfx/src/entity.hh index a97192d39..d8571fcfc 100644 --- a/modules/gfx/src/entity.hh +++ b/modules/gfx/src/entity.hh @@ -311,7 +311,7 @@ private: bool blur_; float blurf1_; float blurf2_; - bool needs_update_; + mutable bool needs_update_; }; -- GitLab From b44dc138cccadef243deed569946c040bb8db5e2 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Wed, 23 Feb 2011 18:32:29 +0100 Subject: [PATCH 42/59] =?UTF-8?q?also=20parse=20queries=20like=20'aname=3D?= =?UTF-8?q?=3FG'=20correctly?= --- modules/mol/base/src/impl/query_impl.cc | 9 +++++++-- modules/mol/base/tests/test_query.cc | 4 ++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/modules/mol/base/src/impl/query_impl.cc b/modules/mol/base/src/impl/query_impl.cc index 25d4e200a..d2297c5cd 100644 --- a/modules/mol/base/src/impl/query_impl.cc +++ b/modules/mol/base/src/impl/query_impl.cc @@ -155,15 +155,20 @@ bool is_ident_or_str(char c) { QueryToken QueryLexer::LexIdentOrStringToken() { static IdentTokens ident_tokens; size_t start=current_; + bool force_string=false; while (current_<query_string_.length() && is_ident_or_str(query_string_[current_])) { + if (query_string_[current_]=='*' || query_string_[current_]=='?') { + force_string=true; + } current_++; } String ident=query_string_.substr(start, current_-start); if (tok::Type* t=find(ident_tokens, ident.c_str())) { return QueryToken(Range(start, current_-start), *t); } - return QueryToken(Range(start, current_-start), tok::Identifier); + return QueryToken(Range(start, current_-start), + force_string? tok::String : tok::Identifier); } QueryToken QueryLexer::LexToken() { @@ -174,7 +179,7 @@ QueryToken QueryLexer::LexToken() { if (isdigit(current_char) || current_char=='-') { return this->LexNumericToken(); } - if (isalpha(current_char)) { + if (isalpha(current_char) || current_char=='?' || current_char=='*') { return this->LexIdentOrStringToken(); } switch (current_char) { diff --git a/modules/mol/base/tests/test_query.cc b/modules/mol/base/tests/test_query.cc index 0e474611a..f868c468a 100644 --- a/modules/mol/base/tests/test_query.cc +++ b/modules/mol/base/tests/test_query.cc @@ -123,6 +123,8 @@ BOOST_AUTO_TEST_CASE(test_query_parse_properties) BOOST_CHECK(Query("grtest:2=8").IsValid()); BOOST_CHECK(Query("gctest:3.0=9").IsValid()); BOOST_CHECK(Query("anita=3").IsValid()==false); + BOOST_CHECK(Query("gc*test=3").IsValid()==false); + BOOST_CHECK(Query("gc?test=3").IsValid()==false); } BOOST_AUTO_TEST_CASE(test_query_parse_value_type) @@ -279,8 +281,10 @@ BOOST_AUTO_TEST_CASE(test_glob) ensure_counts(e, "rname=ARG and aname=N?1", 1, 1, 1); ensure_counts(e, "rname=ARG and aname=NH?", 1, 1, 2); ensure_counts(e, "rname=ARG and aname=\"*2\"", 1, 1, 1); + ensure_counts(e, "rname=ARG and aname=*2", 1, 1, 1); ensure_counts(e, "rname=ARG and aname=N?", 1, 1, 1); ensure_counts(e, "rname=LEU and aname=\"?D?\"", 1, 1, 2); + ensure_counts(e, "rname=LEU and aname=?D?", 1, 1, 2); } BOOST_AUTO_TEST_SUITE_END() -- GitLab From 6085483be55c9c4679e5cb5d9764ebe0cd6f18d8 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Wed, 23 Feb 2011 18:47:14 +0100 Subject: [PATCH 43/59] removed unused variable --- modules/gui/src/perspective.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/gui/src/perspective.cc b/modules/gui/src/perspective.cc index 023b9b186..f3ac9850a 100644 --- a/modules/gui/src/perspective.cc +++ b/modules/gui/src/perspective.cc @@ -120,7 +120,6 @@ QMenuBar* Perspective::GetMenuBar() QMenu* Perspective::GetMenu(const QString& name) { - QMenu* menu=NULL; QList<QAction *> actions=menu_bar_->actions(); for (QList<QAction*>::iterator i=actions.begin(), e=actions.end(); i!=e; ++i) { -- GitLab From d0ae487e9970b7436fca1a74ccaa96aecd1c3331 Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Wed, 23 Feb 2011 15:24:56 -0500 Subject: [PATCH 44/59] added a io/mae profiling test --- modules/conop/src/builder.cc | 7 +++---- modules/io/src/mol/entity_io_mae_handler.cc | 11 ++++++++--- modules/io/tests/CMakeLists.txt | 6 +++++- modules/io/tests/test_mae_standalone.cc | 14 ++++++++++++++ 4 files changed, 30 insertions(+), 8 deletions(-) create mode 100644 modules/io/tests/test_mae_standalone.cc diff --git a/modules/conop/src/builder.cc b/modules/conop/src/builder.cc index 36fcf7bab..0b71e97b8 100644 --- a/modules/conop/src/builder.cc +++ b/modules/conop/src/builder.cc @@ -63,7 +63,6 @@ bool Builder::DoesPeptideBondExist(const mol::AtomHandle& n, bool Builder::IsBondFeasible(const mol::AtomHandle& atom_a, const mol::AtomHandle& atom_b) { - Real len=geom::Length2(atom_a.GetPos()-atom_b.GetPos()); Real radii=0.0; if (atom_a.GetRadius()>0.0) { radii=atom_a.GetRadius(); @@ -75,9 +74,9 @@ bool Builder::IsBondFeasible(const mol::AtomHandle& atom_a, } else { return false; } - radii*=0.5; - Real upper_bound=1.5*radii*radii; - Real lower_bound=0.25*radii*radii; + Real len=geom::Length2(atom_a.GetPos()-atom_b.GetPos()); + Real lower_bound=radii*radii*0.0625; + Real upper_bound=lower_bound*6.0; return (len<=upper_bound && len>=lower_bound); } diff --git a/modules/io/src/mol/entity_io_mae_handler.cc b/modules/io/src/mol/entity_io_mae_handler.cc index 7cccf154a..643630f8a 100644 --- a/modules/io/src/mol/entity_io_mae_handler.cc +++ b/modules/io/src/mol/entity_io_mae_handler.cc @@ -330,14 +330,19 @@ bool EntityIOMAEHandler::ProvidesExport(const boost::filesystem::path& loc, mol::EntityHandle LoadMAE(const String& file_name) { - Profile profile_load("LoadMAE"); //conop::BuilderP builder = conop::Conopology::Instance().GetBuilder(); conop::BuilderP builder(new conop::HeuristicBuilder); MAEReader reader(file_name); mol::EntityHandle ent=mol::CreateEntity(); mol::XCSEditor editor=ent.EditXCS(mol::BUFFERED_EDIT); - reader.Import(ent); - conop::Conopology::Instance().ConnectAll(builder,ent); + { + Profile profile("import MAE"); + reader.Import(ent); + } + { + Profile profile("connect all"); + conop::Conopology::Instance().ConnectAll(builder,ent); + } return ent; } diff --git a/modules/io/tests/CMakeLists.txt b/modules/io/tests/CMakeLists.txt index 1cb26f5fd..71c8ea095 100644 --- a/modules/io/tests/CMakeLists.txt +++ b/modules/io/tests/CMakeLists.txt @@ -11,4 +11,8 @@ set(OST_IO_UNIT_TESTS # missing: test_star_parser.cc ost_unittest(io "${OST_IO_UNIT_TESTS}") target_link_libraries(io_tests ost_mol) -target_link_libraries(io_tests ost_seq) \ No newline at end of file +target_link_libraries(io_tests ost_seq) + +add_executable(test_mae_standalone test_mae_standalone.cc) +target_link_libraries(test_mae_standalone ost_mol) +target_link_libraries(test_mae_standalone ost_io) diff --git a/modules/io/tests/test_mae_standalone.cc b/modules/io/tests/test_mae_standalone.cc new file mode 100644 index 000000000..10395fb69 --- /dev/null +++ b/modules/io/tests/test_mae_standalone.cc @@ -0,0 +1,14 @@ +#include <ost/log.hh> +#include <ost/conop/conop.hh> +#include <ost/io/entity_io_mae_handler.hh> + +using namespace ost; + +int main(int argc, char** argv) +{ + if(argc>1) { + mol::EntityHandle eh=io::LoadMAE(argv[1]); + } + + return 0; +} -- GitLab From 497c629b044ea9fc2fa09a5e0a21b8f88e5c29b0 Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Thu, 24 Feb 2011 12:39:14 -0500 Subject: [PATCH 45/59] added chain property to atom handle and view py export; fixed CreateViewFromAtomList python export to accept actual python lists --- modules/mol/base/pymod/export_atom.cc | 10 +++++++ modules/mol/base/pymod/export_atom_view.cc | 9 ++++++ modules/mol/base/pymod/export_entity_view.cc | 31 +++++++++++++++++--- modules/mol/base/src/view_op.cc | 1 + 4 files changed, 47 insertions(+), 4 deletions(-) diff --git a/modules/mol/base/pymod/export_atom.cc b/modules/mol/base/pymod/export_atom.cc index 48695455d..8aa81ce4e 100644 --- a/modules/mol/base/pymod/export_atom.cc +++ b/modules/mol/base/pymod/export_atom.cc @@ -28,6 +28,14 @@ using namespace ost::mol; #include <ost/export_helper/generic_property_def.hh> #include <ost/export_helper/vector.hh> + +namespace { + ChainHandle get_chain(AtomHandle& a) + { + return a.GetResidue().GetChain(); + } +} + void export_Atom() { class_<AtomBase> atom_base("AtomBase", no_init); @@ -81,6 +89,8 @@ void export_Atom() class_<AtomHandle, bases<AtomBase> >("AtomHandle", init<>()) .def("GetResidue",&AtomHandle::GetResidue) .add_property("residue",&AtomHandle::GetResidue) + .def("GetChain",get_chain) + .add_property("chain",get_chain) .def("GetBondList", &AtomHandle::GetBondList) .def("GetBondCount", &AtomHandle::GetBondCount) .def("GetEntity", &AtomHandle::GetEntity) diff --git a/modules/mol/base/pymod/export_atom_view.cc b/modules/mol/base/pymod/export_atom_view.cc index e0ab17b09..ca5d6f892 100644 --- a/modules/mol/base/pymod/export_atom_view.cc +++ b/modules/mol/base/pymod/export_atom_view.cc @@ -26,12 +26,21 @@ using namespace boost::python; using namespace ost; using namespace ost::mol; +namespace { + ChainView get_chain(AtomView& a) + { + return a.GetResidue().GetChain(); + } +} + void export_AtomView() { class_<AtomView, bases<AtomBase> >("AtomView", init<>()) .def("GetResidue",&AtomView::GetResidue) .add_property("residue",&AtomView::GetResidue) + .def("GetChain",get_chain) + .add_property("chain",get_chain) .def(self==self) .def(self!=self) .add_property("handle", &AtomView::GetHandle) diff --git a/modules/mol/base/pymod/export_entity_view.cc b/modules/mol/base/pymod/export_entity_view.cc index 86a468208..5e3dc12d2 100644 --- a/modules/mol/base/pymod/export_entity_view.cc +++ b/modules/mol/base/pymod/export_entity_view.cc @@ -30,6 +30,17 @@ using namespace ost::mol; namespace { +template<class T> +std::vector<T> from_list(const list& seq) +{ + std::vector<T> nrvo; + for (int i = 0; i < len(seq); ++i) { + nrvo.push_back(extract<T>(seq[i])); + } + return nrvo; +} + + typedef ChainView (EntityView::*StringMethod)(const String&) const; typedef ChainView (EntityView::*StringMethod)(const String&) const; typedef EntityView (EntityView::*QueryMethod)(const Query&, uint) const; @@ -45,8 +56,21 @@ StringMethod find_chain_str=&EntityView::FindChain; QSMethod select_string=&EntityView::Select; QueryMethod select_query=&EntityView::Select; -EntityView (*create_view_1)(const AtomHandleList&)=&CreateViewFromAtomList; -EntityView (*create_view_2)(const AtomViewList&)=&CreateViewFromAtomList; +EntityView create_view(const list& seq) +{ + if(len(seq)==0) return EntityView(); + extract<AtomHandle> get_handle(seq[0]); + if(get_handle.check()) { + return CreateViewFromAtomList(from_list<AtomHandle>(seq)); + } + extract<AtomView> get_view(seq[0]); + if(get_view.check()) { + return CreateViewFromAtomList(from_list<AtomView>(seq)); + } + throw Error("expected sequence of atom handles or atom views"); + return EntityView(); +} + ResidueView (EntityView::*add_res_a)(const ResidueHandle&, ViewAddFlags)=&EntityView::AddResidue; ResidueView (EntityView::*add_res_b)(const ResidueView&, @@ -164,8 +188,7 @@ void export_EntityView() def("Difference", &Difference); def("Intersection", &Intersection); - def("CreateViewFromAtoms", create_view_1); - def("CreateViewFromAtoms", create_view_2); + def("CreateViewFromAtoms", create_view); def("CreateEntityFromView", &CreateEntityFromView, arg("handle")=EntityHandle()); diff --git a/modules/mol/base/src/view_op.cc b/modules/mol/base/src/view_op.cc index a7d7e6f6d..973fa7686 100644 --- a/modules/mol/base/src/view_op.cc +++ b/modules/mol/base/src/view_op.cc @@ -250,6 +250,7 @@ mol::EntityView assemble_view(const std::vector<T>& l, mol::EntityView v) { typedef typename std::vector<T>::const_iterator Iter; for (Iter i=l.begin(), e=l.end(); i!=e; ++i) { + if(!i->IsValid()) continue; if (!belongs_to_same_ent(*i, v)) throw IntegrityError(combining_not_allowed); v.AddAtom(to_handle(*i), mol::ViewAddFlag::CHECK_DUPLICATES); -- GitLab From c110b907f5c36d70b6b62ad9b236c2b8329676fe Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Thu, 24 Feb 2011 12:46:55 -0500 Subject: [PATCH 46/59] fixed BZDNG-217; autoslab not working properly for hsc objects --- modules/gfx/src/impl/cartoon_renderer.cc | 21 +++++++++++++++++++++ modules/gfx/src/impl/cartoon_renderer.hh | 2 ++ 2 files changed, 23 insertions(+) diff --git a/modules/gfx/src/impl/cartoon_renderer.cc b/modules/gfx/src/impl/cartoon_renderer.cc index 73c8d63e9..97ea050a5 100644 --- a/modules/gfx/src/impl/cartoon_renderer.cc +++ b/modules/gfx/src/impl/cartoon_renderer.cc @@ -51,6 +51,27 @@ void CartoonRenderer::SetForceTube(bool force_tube) force_tube_ = force_tube; } +geom::AlignedCuboid CartoonRenderer::GetBoundingBox() const +{ + geom::Vec3 mmin(std::numeric_limits<float>::max(), + std::numeric_limits<float>::max(), + std::numeric_limits<float>::max()); + geom::Vec3 mmax(-std::numeric_limits<float>::max(), + -std::numeric_limits<float>::max(), + -std::numeric_limits<float>::max()); + + assert(!(state_ & DIRTY_VIEW)); + for(unsigned int llc=0;llc<spline_list_list_.size();++llc) { + SplineEntryList slist = spline_list_list_[llc]; + for(unsigned int lc=0;lc<slist.size();++lc) { + mmin=geom::Min(mmin, slist[lc].position); + mmax=geom::Max(mmax, slist[lc].position); + } + } + + return geom::AlignedCuboid(mmin, mmax); +} + void CartoonRenderer::PrepareRendering() { TraceRendererBase::PrepareRendering(); diff --git a/modules/gfx/src/impl/cartoon_renderer.hh b/modules/gfx/src/impl/cartoon_renderer.hh index 59be06b59..1d60eec76 100644 --- a/modules/gfx/src/impl/cartoon_renderer.hh +++ b/modules/gfx/src/impl/cartoon_renderer.hh @@ -41,6 +41,8 @@ class DLLEXPORT_OST_GFX CartoonRenderer: public TraceRendererBase { public: CartoonRenderer(BackboneTrace* trace, bool force_tube=false); + virtual geom::AlignedCuboid GetBoundingBox() const; + virtual void PrepareRendering(); virtual bool CanSetOptions(RenderOptionsPtr& render_options); -- GitLab From fb1e41fbe16ea42cde0859477f86d601461f91e9 Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Thu, 24 Feb 2011 15:43:22 -0500 Subject: [PATCH 47/59] fixed slow MAE import; debug output cleanup --- modules/conop/src/heuristic_builder.cc | 48 ++--- modules/io/src/mol/entity_io_mae_handler.cc | 203 +++++++++++--------- modules/io/src/mol/entity_io_mae_handler.hh | 19 +- 3 files changed, 148 insertions(+), 122 deletions(-) diff --git a/modules/conop/src/heuristic_builder.cc b/modules/conop/src/heuristic_builder.cc index 3fbff0b9d..eda01852e 100644 --- a/modules/conop/src/heuristic_builder.cc +++ b/modules/conop/src/heuristic_builder.cc @@ -119,8 +119,8 @@ HeuristicBuilder::HeuristicBuilder(): heuristic_connect::CONN_DEF_ENTRY& def_entry = heuristic_connect::def_entry_table[ec]; detail::ConnResEntry entry(def_entry.abbrev, def_entry.single, def_entry.chem_class); - LOG_DEBUG("creating table entry for " << def_entry.abbrev); - LOG_DEBUG("working on bond entries"); + LOG_TRACE("creating table entry for " << def_entry.abbrev); + LOG_TRACE("working on bond entries"); for (int xx=0;xx<def_entry.name_count;++xx) { String name=def_entry.name_list[xx]; if (name!="OXT") @@ -152,9 +152,9 @@ HeuristicBuilder::HeuristicBuilder(): else if(conn_nam[1]==String("-")) { entry.SetPrev(conn_nam[0]);} else if(conn_nam[0]==String("+")) { entry.SetNext(conn_nam[1]);} else if(conn_nam[1]==String("+")) { entry.SetNext(conn_nam[0]);} - LOG_DEBUG(" " << conn_nam[0] << " " << conn_nam[1]); + LOG_TRACE(" " << conn_nam[0] << " " << conn_nam[1]); } else { - LOG_DEBUG(" " << conn_nam[0] << " " << conn_nam[1]); + LOG_TRACE(" " << conn_nam[0] << " " << conn_nam[1]); entry.AddConn(conn_nam[0],conn_nam[1]); } } @@ -205,18 +205,18 @@ void HeuristicBuilder::ConnectivityFromAtomNames(const mol::ResidueHandle& res, mol::AtomHandleList::iterator it2=it1; ++it2; for (;it2!=atomlist.end();++it2) { - LOG_DEBUG("checking for atom pair (" << it1->GetName() << "," + LOG_TRACE("checking for atom pair (" << it1->GetName() << "," << it2->GetName() << ") in connectivity table of " << res.GetKey() << "... "); int conn=centry.Check(it1->GetName(),it2->GetName()); if (conn==1 && this->IsBondFeasible(*it1, *it2)) { - LOG_DEBUG( "found"); + LOG_TRACE( "found"); editor.Connect(*it1,*it2); } else if(conn==2 && this->IsBondFeasible(*it2, *it1)) { - LOG_DEBUG( "found (reversed)"); + LOG_TRACE( "found (reversed)"); editor.Connect(*it2,*it1); } else { - LOG_DEBUG( "not found"); + LOG_TRACE( "not found"); } } } else { @@ -227,7 +227,7 @@ void HeuristicBuilder::ConnectivityFromAtomNames(const mol::ResidueHandle& res, void HeuristicBuilder::ConnectAtomsOfResidue(mol::ResidueHandle res) { - LOG_DEBUG("HeuristicBuilder: ConnectAtomsOfResidue on " << res.GetKey() << " " << res.GetNumber()); + LOG_TRACE("HeuristicBuilder: ConnectAtomsOfResidue on " << res.GetKey() << " " << res.GetNumber()); mol::AtomHandleList atomlist = res.GetAtomList(); mol::AtomHandleList unk_atomlist; @@ -237,7 +237,7 @@ void HeuristicBuilder::ConnectAtomsOfResidue(mol::ResidueHandle res) for(mol::AtomHandleList::iterator it=atomlist.begin();it!=atomlist.end();++it) { ss << " " << it->GetName() << " @" << it->GetPos(); } - LOG_DEBUG(ss.str()); + LOG_TRACE(ss.str()); #endif std::pair<detail::ConnResEntry,bool> ret = LookupResEntry(res.GetKey()); @@ -248,11 +248,11 @@ void HeuristicBuilder::ConnectAtomsOfResidue(mol::ResidueHandle res) for(mol::AtomHandleList::iterator it1=unk_atomlist.begin(); it1!=unk_atomlist.end(); ++it1) { - LOG_DEBUG( "atom " << it1->GetName() << " not found, using distance based connect"); + LOG_TRACE( "atom " << it1->GetName() << " not found, using distance based connect"); Builder::DistanceBasedConnect(*it1); } } else { - LOG_DEBUG("no residue entry found, using distance based connect"); + LOG_TRACE("no residue entry found, using distance based connect"); for(mol::AtomHandleList::iterator it1=atomlist.begin(); it1!=atomlist.end(); ++it1) { @@ -270,16 +270,16 @@ void ConnectPrevNext(HeuristicBuilder* builder,mol::ResidueHandle res0, static String fname=flag ? "HeuristicBuilder: ConnectNextXCS" : "HeuristicBuilder: ConnectPrevXCS"; if(!res0) return; // return if invalid mol::XCSEditor editor=res0.GetEntity().EditXCS(mol::BUFFERED_EDIT); - LOG_DEBUG(fname << " on " << res0.GetKey() << " " << res0.GetNumber()); + LOG_TRACE(fname << " on " << res0.GetKey() << " " << res0.GetNumber()); if(!res1) { // auto-detect prev or next residue in chain // and perform sequence check if(flag) { - LOG_DEBUG(fname << " autodecting next residue"); + LOG_TRACE(fname << " autodecting next residue"); res1 = res0.GetChain().GetNext(res0); } else { - LOG_DEBUG(fname << " autodecting next residue"); + LOG_TRACE(fname << " autodecting next residue"); res1 = res0.GetChain().GetPrev(res0); } } else { @@ -292,7 +292,7 @@ void ConnectPrevNext(HeuristicBuilder* builder,mol::ResidueHandle res0, } if(!res1) return; // ignore if prev/next residue is invalid - LOG_DEBUG(fname << " found second residue " << res1.GetKey() + LOG_TRACE(fname << " found second residue " << res1.GetKey() << " " << res1.GetNumber()); std::pair<detail::ConnResEntry,bool> res0_ret = builder->LookupResEntry(res0.GetKey()); @@ -300,7 +300,7 @@ void ConnectPrevNext(HeuristicBuilder* builder,mol::ResidueHandle res0, if(!res0_ret.second) { if(res0.FindAtom("N") && res0.FindAtom("CA") && res0.FindAtom("C")) { - LOG_DEBUG("using default peptide for " << res0.GetKey()); + LOG_TRACE("using default peptide for " << res0.GetKey()); res0_ret.first=builder->DefaultPeptide(); res0_ret.second=true; } @@ -308,7 +308,7 @@ void ConnectPrevNext(HeuristicBuilder* builder,mol::ResidueHandle res0, if(!res1_ret.second) { if(res1.FindAtom("N") && res1.FindAtom("CA") && res1.FindAtom("C")) { - LOG_DEBUG("using default peptide for " << res1.GetKey()); + LOG_TRACE("using default peptide for " << res1.GetKey()); res1_ret.first=builder->DefaultPeptide(); res1_ret.second=true; } @@ -321,13 +321,13 @@ void ConnectPrevNext(HeuristicBuilder* builder,mol::ResidueHandle res0, String res1_atom_name = res1_centry.GetNext(); if(res0_atom_name.empty() || res1_atom_name.empty()) return; - LOG_DEBUG(fname << ": looking up atom names " << res0_atom_name << " " << res1_atom_name); + LOG_TRACE(fname << ": looking up atom names " << res0_atom_name << " " << res1_atom_name); // lookup both atoms in their respective residues mol::AtomHandle res0_atom = res0.FindAtom(res0_atom_name); mol::AtomHandle res1_atom = res1.FindAtom(res1_atom_name); if(res0_atom && res1_atom) { - LOG_DEBUG(fname << ": found atoms, connecting"); + LOG_TRACE(fname << ": found atoms, connecting"); if(flag) { if (builder->DoesPeptideBondExist(res0_atom, res1_atom)) { editor.Connect(res0_atom,res1_atom); @@ -405,11 +405,11 @@ void HeuristicBuilder::AssignTorsionsToResidue(mol::ResidueHandle res) mol::TorsionHandle th = editor.AddTorsion(tel[ti].name, ah[0], ah[1], ah[2], ah[3]); if(th) { - LOG_DEBUG("added torsion entry for " << tel[ti].a[0] << " " + LOG_TRACE("added torsion entry for " << tel[ti].a[0] << " " << tel[ti].a[1] << " " << tel[ti].a[2] << " " << tel[ti].a[3]); } else { - LOG_DEBUG("no torsion entry for " << tel[ti].a[0] << " " + LOG_TRACE("no torsion entry for " << tel[ti].a[0] << " " << tel[ti].a[1] << " " << tel[ti].a[2] << " " << tel[ti].a[3]); } @@ -469,10 +469,10 @@ std::pair<detail::ConnResEntry,bool> HeuristicBuilder::LookupResEntry(const mol: detail::ConnResEntryMap::iterator pos = emap_.find(key); if(pos!=emap_.end()) { - LOG_DEBUG("reskey '" << key << "' found in connectivity map"); + LOG_TRACE("reskey '" << key << "' found in connectivity map"); return std::make_pair(pos->second,true); } - LOG_DEBUG("reskey '" << key << "' not found connectivity map"); + LOG_TRACE("reskey '" << key << "' not found connectivity map"); return std::make_pair(dummy,false); } diff --git a/modules/io/src/mol/entity_io_mae_handler.cc b/modules/io/src/mol/entity_io_mae_handler.cc index 643630f8a..c1c477c3a 100644 --- a/modules/io/src/mol/entity_io_mae_handler.cc +++ b/modules/io/src/mol/entity_io_mae_handler.cc @@ -32,6 +32,7 @@ #include <boost/algorithm/string.hpp> #include <boost/format.hpp> #include <boost/regex.hpp> +#include <boost/shared_array.hpp> #include <ost/log.hh> #include <ost/conop/conop.hh> @@ -48,41 +49,6 @@ namespace ost { namespace io { using boost::format; - namespace { - - std::vector<std::string> tokenize(const std::string& line) - { - std::vector<std::string> nrvo; - bool in_string=false; - int p0=0; - for(size_t p1=1;p1<line.size();++p1) { - if(in_string) { - if(line[p1]=='"') { - in_string=false; - nrvo.push_back(std::string(line.substr(p0,p1-p0))); - ++p1; - p0=p1; - while(isspace(line[p1]) && p1<line.size()) {++p0;++p1;} - --p0; --p1; - } - } else { - if(isspace(line[p1])) { - nrvo.push_back(std::string(line.substr(p0+1,p1-p0-1))); - ++p1; - p0=p1; - while(isspace(line[p1]) && p1<line.size()) {++p0;++p1;} - --p0; --p1; - } else if(line[p1]=='"') { - in_string=true; - p0=p1+1; - } - } - } - return nrvo; - } - - } - MAEReader::MAEReader(const boost::filesystem::path& loc): curr_chain_(), curr_residue_(), @@ -106,6 +72,7 @@ void MAEReader::Import(mol::EntityHandle& ent) static const boost::regex r_ct_block("f_m_ct +\\{"); static const boost::regex r_atom_block("m_atom\\[.*\\] +\\{"); static const boost::regex r_delim(":::"); + static const boost::regex r_end(" *\\} *"); String line; bool in_ct_block=false; @@ -121,13 +88,15 @@ void MAEReader::Import(mol::EntityHandle& ent) int i_chain_name=-1; mol::XCSEditor editor=ent.EditXCS(mol::BUFFERED_EDIT); + + boost::shared_array<char> xline(new char[512]); while(std::getline(in_,line)) { - line = boost::trim_copy(line); + //line = boost::trim_copy(line); if(in_ct_block) { if(in_atom_block) { if(parsing_atoms) { - if(boost::regex_match(line,r_delim)) { + if(boost::regex_search(line,r_delim)) { LOG_TRACE( "stopping atom parsing" ); parsing_atoms=false; prop_list.clear(); @@ -140,23 +109,14 @@ void MAEReader::Import(mol::EntityHandle& ent) i_chain_name=-1; } else { // parsing atom line - std::vector<std::string> tokens=tokenize(line); - for(size_t i=0;i<tokens.size();++i) { - LOG_TRACE( "[" << tokens[i] << "] "); - } - LOG_TRACE(""); - - add_atom(ent,editor, - i_atom_name>=0 && i_atom_name<(int)tokens.size() ? tokens[i_atom_name] : "X", - i_atom_xpos>=0 && i_atom_xpos<(int)tokens.size() ? tokens[i_atom_xpos] : "0", - i_atom_ypos>=0 && i_atom_ypos<(int)tokens.size() ? tokens[i_atom_ypos] : "0", - i_atom_zpos>=0 && i_atom_zpos<(int)tokens.size() ? tokens[i_atom_zpos] : "0", - i_res_name>=0 && i_res_name<(int)tokens.size() ? tokens[i_res_name] : "X", - i_res_num>=0 && i_res_num<(int)tokens.size() ? tokens[i_res_num] : "0", - i_chain_name>=0 && i_chain_name<(int)tokens.size() ? tokens[i_chain_name] : "X"); + memset(xline.get(),0,512); + strncpy(xline.get(),line.c_str(),511); + parse_and_add_atom(ent,editor,xline.get(),line.size(), + i_atom_name, i_atom_xpos, i_atom_ypos, i_atom_zpos, + i_res_name, i_res_num, i_chain_name); } } else { // not parsing atoms - if(boost::regex_match(line,r_delim)) { + if(boost::regex_search(line,r_delim)) { if(i_atom_name==-1 || i_atom_xpos==-1 || i_atom_ypos==-1 || @@ -167,36 +127,37 @@ void MAEReader::Import(mol::EntityHandle& ent) } LOG_TRACE( "starting atom parsing" ); parsing_atoms=true; - } else if(line[0]=='}') { + } else if(boost::regex_search(line,r_end)) { LOG_TRACE( "exiting atom block" ); in_atom_block=false; } else { + std::string line2=boost::trim_copy(line); // parsing property line - if(line[0]!='#') { + if(line2[0]!='#') { int pid=prop_list.size()+1; - prop_list.push_back(line); + prop_list.push_back(line2); LOG_TRACE( "found property '" << prop_list.back() << "' id=" << pid ); - if(line=="s_m_pdb_atom_name") i_atom_name=pid; - else if(line=="r_m_x_coord") i_atom_xpos=pid; - else if(line=="r_m_y_coord") i_atom_ypos=pid; - else if(line=="r_m_z_coord") i_atom_zpos=pid; - else if(line=="s_m_pdb_residue_name") i_res_name=pid; - else if(line=="i_m_residue_number") i_res_num=pid; - else if(line=="s_m_pdb_segment_name") i_chain_name=pid; + if(line2=="s_m_pdb_atom_name") i_atom_name=pid; + else if(line2=="r_m_x_coord") i_atom_xpos=pid; + else if(line2=="r_m_y_coord") i_atom_ypos=pid; + else if(line2=="r_m_z_coord") i_atom_zpos=pid; + else if(line2=="s_m_pdb_residue_name") i_res_name=pid; + else if(line2=="i_m_residue_number") i_res_num=pid; + else if(line2=="s_m_pdb_segment_name") i_chain_name=pid; } } } } else { // not in atom block - if(boost::regex_match(line,r_atom_block)) { + if(boost::regex_search(line,r_atom_block)) { LOG_TRACE( "entering atom block" ); in_atom_block=true; - } else if(line[0]=='}') { + } else if(boost::regex_search(line,r_end)) { LOG_TRACE( "exiting ct block" ); in_ct_block=false; } } } else { // not in ct block - if(boost::regex_match(line,r_ct_block)) { + if(boost::regex_search(line,r_ct_block)) { LOG_TRACE( "entering ct block" ); in_ct_block=true; } @@ -208,27 +169,95 @@ void MAEReader::Import(mol::EntityHandle& ent) } -void MAEReader::add_atom(mol::EntityHandle ent, - mol::XCSEditor& editor, - const std::string& aname2, - const std::string& s_axpos, - const std::string& s_aypos, - const std::string& s_azpos, - const std::string& rname2, - const std::string& s_rnum, - const std::string& cname2) +void MAEReader::parse_and_add_atom(mol::EntityHandle ent, + mol::XCSEditor& editor, + char* line, + size_t line_len, + int i_atom_name, + int i_atom_xpos, + int i_atom_ypos, + int i_atom_zpos, + int i_res_name, + int i_res_num, + int i_chain_name) { - std::string aname=boost::trim_copy(aname2); - std::string rname=boost::trim_copy(rname2); - std::string cname=boost::trim_copy(cname2); + std::string aname("X"); + std::string rname("UNK"); + std::string cname("X"); + geom::Vec3 apos; + int irnum; + + LOG_TRACE("[" << std::string(line) << "]"); + + bool in_string=false; + char* p0=line; + char* p2=line+line_len; + while(isspace(*p0) && p0<=p2) ++p0; + int tcount=0; + for(char* p1=p0+1;p1<p2;++p1) { + if(in_string) { + if((*p1)=='"') { + in_string=false; + char* p3=p1; + (*p3)='\0'; + while(isspace(*p0) && p0<=p3) ++p0; + while(isspace(*(p3-1)) && p3>p0) --p3; + (*p3)='\0'; + if(tcount==i_atom_name) { + aname=std::string(p0); + } else if(tcount==i_atom_xpos) { + apos[0]=atof(p0); + } else if(tcount==i_atom_ypos) { + apos[1]=atof(p0); + } else if(tcount==i_atom_zpos) { + apos[2]=atof(p0); + } else if(tcount==i_res_name) { + rname=std::string(p0); + } else if(tcount==i_res_num) { + irnum=atoi(p0); + } else if(tcount==i_chain_name) { + cname=std::string(p0); + } + ++tcount; + ++p1; + p0=p1; + while(isspace((*p1)) && p1<p2) {++p0;++p1;} + --p0; --p1; + } + } else { // not instring + if(isspace((*p1))) { + (*p1)='\0'; + ++p0; + if(tcount==i_atom_name) { + aname=std::string(p0); + } else if(tcount==i_atom_xpos) { + apos[0]=atof(p0); + } else if(tcount==i_atom_ypos) { + apos[1]=atof(p0); + } else if(tcount==i_atom_zpos) { + apos[2]=atof(p0); + } else if(tcount==i_res_name) { + rname=std::string(p0); + } else if(tcount==i_res_num) { + irnum=atoi(p0); + } else if(tcount==i_chain_name) { + cname=std::string(p0); + } + ++tcount; + ++p1; + p0=p1; + while(isspace((*p1)) && p1<p2) {++p0;++p1;} + --p0; --p1; + } else if((*p1)=='"') { + in_string=true; + p0=p1+1; + } + } + } + std::string ele=aname.empty() ? "X" : aname.substr(0,1); if(isdigit(ele[0])) ele="H"; - int irnum = atoi(s_rnum.c_str()); - geom::Vec3 apos(atof(s_axpos.c_str()), - atof(s_aypos.c_str()), - atof(s_azpos.c_str())); - mol::ResidueKey rkey(rname); mol::ResNum rnum(irnum); @@ -335,14 +364,8 @@ mol::EntityHandle LoadMAE(const String& file_name) MAEReader reader(file_name); mol::EntityHandle ent=mol::CreateEntity(); mol::XCSEditor editor=ent.EditXCS(mol::BUFFERED_EDIT); - { - Profile profile("import MAE"); - reader.Import(ent); - } - { - Profile profile("connect all"); - conop::Conopology::Instance().ConnectAll(builder,ent); - } + reader.Import(ent); + conop::Conopology::Instance().ConnectAll(builder,ent); return ent; } diff --git a/modules/io/src/mol/entity_io_mae_handler.hh b/modules/io/src/mol/entity_io_mae_handler.hh index 9a50d6e3f..4921b9daf 100644 --- a/modules/io/src/mol/entity_io_mae_handler.hh +++ b/modules/io/src/mol/entity_io_mae_handler.hh @@ -34,14 +34,17 @@ public: private: - void add_atom(mol::EntityHandle ent, - mol::XCSEditor& editor,const std::string& s_aname, - const std::string& s_axpos, - const std::string& s_aypos, - const std::string& s_azpos, - const std::string& s_rname, - const std::string& s_rnum, - const std::string& s_cname); + void parse_and_add_atom(mol::EntityHandle ent, + mol::XCSEditor& editor, + char* line, + size_t line_len, + int i_atom_name, + int i_atom_xpos, + int i_atom_ypos, + int i_atom_zpos, + int i_res_name, + int i_res_num, + int i_chain_name); mol::ChainHandle curr_chain_; mol::ResidueHandle curr_residue_; -- GitLab From 82504b08766fadf416a4fb1b36a20b2361bd33e0 Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Thu, 24 Feb 2011 21:21:34 -0500 Subject: [PATCH 48/59] removed test file --- t.py | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 t.py diff --git a/t.py b/t.py deleted file mode 100644 index 79d529917..000000000 --- a/t.py +++ /dev/null @@ -1,5 +0,0 @@ -import desost_util -e=io.LoadPDB("examples/demos/data/sh2.pdb") -desost_util.RunStride(e,True) -scene.Add(gfx.Entity("t",gfx.HSC,e)) - -- GitLab From 215f161d4c4794f6b7edf881177a942dd20928ef Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Thu, 24 Feb 2011 08:40:38 +0100 Subject: [PATCH 49/59] remove entity explorer. it hasn't been used for ages --- .../src/entity_explorer/entity_explorer.cc | 61 ------ .../src/entity_explorer/entity_explorer.hh | 47 ----- .../entity_explorer/entity_explorer_model.cc | 128 ------------ .../entity_explorer/entity_explorer_model.hh | 68 ------ modules/gui/src/entity_explorer/info_panel.cc | 34 --- modules/gui/src/entity_explorer/info_panel.hh | 49 ----- modules/gui/src/entity_explorer/menu_item.cc | 18 -- modules/gui/src/entity_explorer/menu_item.hh | 196 ------------------ 8 files changed, 601 deletions(-) delete mode 100644 modules/gui/src/entity_explorer/entity_explorer.cc delete mode 100644 modules/gui/src/entity_explorer/entity_explorer.hh delete mode 100644 modules/gui/src/entity_explorer/entity_explorer_model.cc delete mode 100644 modules/gui/src/entity_explorer/entity_explorer_model.hh delete mode 100644 modules/gui/src/entity_explorer/info_panel.cc delete mode 100644 modules/gui/src/entity_explorer/info_panel.hh delete mode 100644 modules/gui/src/entity_explorer/menu_item.cc delete mode 100644 modules/gui/src/entity_explorer/menu_item.hh diff --git a/modules/gui/src/entity_explorer/entity_explorer.cc b/modules/gui/src/entity_explorer/entity_explorer.cc deleted file mode 100644 index b05d1765d..000000000 --- a/modules/gui/src/entity_explorer/entity_explorer.cc +++ /dev/null @@ -1,61 +0,0 @@ -//------------------------------------------------------------------------------ -// This file is part of the OpenStructure project <www.openstructure.org> -// -// Copyright (C) 2008-2011 by the OpenStructure authors -// -// 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; either version 3.0 of the License, or (at your option) -// any later version. -// 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 <ost/gui/gl_canvas.hh> - -#include <ost/gfx/scene.hh> - - -#include "entity_explorer_model.hh" -#include "entity_explorer.hh" -#include "menu_item.hh" - -// Qt includes must come last -#include <QDebug> -#include <QMetaProperty> -#include <QLayout> - -namespace ost { namespace gui { - -class MenuItem; - -EntityExplorer::EntityExplorer(QWidget* p) - : QTreeView(p) { - this->setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding, - QSizePolicy::MinimumExpanding)); - EntityExplorerModel* model=new EntityExplorerModel(this); - this->setModel(model); - QObject::connect(this, SIGNAL(doubleClicked(const QModelIndex&)), - this, SLOT(DoubleClicked(const QModelIndex&))); -} - -void EntityExplorer::OnAction(QAction* action) { - -} - -void EntityExplorer::DoubleClicked(const QModelIndex& index) { - MenuItem* item=static_cast<MenuItem*>(index.internalPointer()); - if (AtomViewMenuItem* atom_item=dynamic_cast<AtomViewMenuItem*>(item)) { - gfx::Scene& scene=gfx::Scene::Instance(); - scene.SetCenter(atom_item->Atom().GetPos()); - scene.RequestRedraw(); - } -} - - -}} // ns diff --git a/modules/gui/src/entity_explorer/entity_explorer.hh b/modules/gui/src/entity_explorer/entity_explorer.hh deleted file mode 100644 index ea5c9f503..000000000 --- a/modules/gui/src/entity_explorer/entity_explorer.hh +++ /dev/null @@ -1,47 +0,0 @@ -//------------------------------------------------------------------------------ -// This file is part of the OpenStructure project <www.openstructure.org> -// -// Copyright (C) 2008-2011 by the OpenStructure authors -// -// 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; either version 3.0 of the License, or (at your option) -// any later version. -// 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 OST_GUI_ENTITY_EXPLORER_HH -#define OST_GUI_ENTITY_EXPLORER_HH - -//#include <ost/signals.hh> -#include <ost/gui/module_config.hh> - -// Qt includes must come last -#include <QTreeView> -#include <QMainWindow> - -namespace ost { namespace gui { - -class GLWin; - -/// \brief Interactive scene menu -class DLLEXPORT_OST_GUI EntityExplorer: public QTreeView -{ - Q_OBJECT; -public: - EntityExplorer(QWidget* p); - -public slots: - void OnAction(QAction* action); - void DoubleClicked(const QModelIndex& index); -}; - -}} // ns - -#endif diff --git a/modules/gui/src/entity_explorer/entity_explorer_model.cc b/modules/gui/src/entity_explorer/entity_explorer_model.cc deleted file mode 100644 index bfe115c1f..000000000 --- a/modules/gui/src/entity_explorer/entity_explorer_model.cc +++ /dev/null @@ -1,128 +0,0 @@ -//------------------------------------------------------------------------------ -// This file is part of the OpenStructure project <www.openstructure.org> -// -// Copyright (C) 2008-2011 by the OpenStructure authors -// -// 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; either version 3.0 of the License, or (at your option) -// any later version. -// 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 <ost/gfx/scene.hh> -#include <ost/gfx/entity.hh> - -#include "entity_explorer_model.hh" -#include "menu_item.hh" - - -#include <QDebug> - -namespace ost { namespace gui { - -EntityExplorerModel::EntityExplorerModel(QObject* parent) - : QAbstractItemModel(parent), root_(new MenuItem(NULL)) { - gfx::Scene::Instance().AttachObserver(this); -} - -EntityExplorerModel::~EntityExplorerModel() -{ - gfx::Scene::Instance().DetachObserver(this); - delete root_; -} - -QVariant EntityExplorerModel::data(const QModelIndex& index, int role) const { - if (role==Qt::DisplayRole) { - MenuItem* item=static_cast<MenuItem*>(index.internalPointer()); - if (item) - return item->Data(); - } - return QVariant(); -} - -Qt::ItemFlags EntityExplorerModel::flags(const QModelIndex& index) const { - if (index.isValid()) - return Qt::ItemIsEnabled|Qt::ItemIsSelectable|Qt::ItemIsUserCheckable; - return Qt::ItemIsEnabled; -} - -QVariant EntityExplorerModel::headerData(int section, Qt::Orientation orientation, - int role) const { - return QVariant(QString("Name")); -} - - -QModelIndex EntityExplorerModel::index(int row, int column, - const QModelIndex& parent) const { - MenuItem* item=root_; - if (parent.isValid()) - item=static_cast<MenuItem*>(parent.internalPointer()); - assert(item); - return createIndex(row, column, (item->Children())[row]); -} - -QModelIndex EntityExplorerModel::parent(const QModelIndex& index) const { - if (!index.isValid()) - return QModelIndex(); - MenuItem* item=static_cast<MenuItem*>(index.internalPointer()); - assert(item!=NULL); - if (item->Parent()==root_) { - return QModelIndex(); - } - return createIndex(item->Parent()->Row(), 0, item->Parent()); -} - -int EntityExplorerModel::rowCount(const QModelIndex& parent) const { - MenuItem* item=root_; - if (parent.isValid()) - item=static_cast<MenuItem*>(parent.internalPointer()); - assert(item!=NULL); - return item->Children().size(); -} - -int EntityExplorerModel::columnCount(const QModelIndex& parent) const { - return 1; -} - -void EntityExplorerModel::ObjectAdded(const gfx::GfxObjP& object) { -#if 0 - // needs new GfxNodeVisitor implementation - gfx::Scene& scene=gfx::Scene::Instance(); - this->beginInsertRows(QModelIndex(),scene.SceneObjects().size()-1, - scene.SceneObjects().size()-1); - root_->Children().push_back(new GfxObjMenuItem(root_, object)); - this->endInsertRows(); -#endif -} - -mol::EntityView EntityExplorerModel::GetEntity(const QModelIndex& index) const { -#if 0 - // needs new GfxNodeVisitor implementation - gfx::GfxObjList& ol=gfx::Scene::Instance().SceneObjects(); - gfx::EntityP e=dyn_cast<gfx::Entity>(ol[index.row()]); - if (e) - return e->GetView(); - else -#endif - return mol::EntityView(); -} - -mol::ChainView EntityExplorerModel::GetChain(const QModelIndex& index) const { - return (this->GetEntity(index.parent()).GetChainList())[index.row()]; -} - -mol::ResidueView EntityExplorerModel::GetResidue(const QModelIndex& index) const { - return mol::ResidueView(); -} - - -}} - - diff --git a/modules/gui/src/entity_explorer/entity_explorer_model.hh b/modules/gui/src/entity_explorer/entity_explorer_model.hh deleted file mode 100644 index 23af90cea..000000000 --- a/modules/gui/src/entity_explorer/entity_explorer_model.hh +++ /dev/null @@ -1,68 +0,0 @@ -//------------------------------------------------------------------------------ -// This file is part of the OpenStructure project <www.openstructure.org> -// -// Copyright (C) 2008-2011 by the OpenStructure authors -// -// 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; either version 3.0 of the License, or (at your option) -// any later version. -// 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 OST_GUI_ENTITY_EXPLORER_MODEL_HH -#define OST_GUI_ENTITY_EXPLORER_MODEL_HH - - -#include <ost/mol/mol.hh> - -#include <ost/gfx/scene_observer.hh> -#include <ost/gfx/gfx_object.hh> -#include <ost/gui/module_config.hh> - -// Qt includes must come last -#include <QAbstractItemModel> - - -namespace ost { namespace gui { - -class MenuItem; - -namespace lvl { - typedef enum { Root=0, Entity, Chain, Residue, Atom } Level; -} - -/// \brief data model for the scene menu tree view -class DLLEXPORT_OST_GUI EntityExplorerModel : public QAbstractItemModel, - public gfx::SceneObserver { - Q_OBJECT -public: - EntityExplorerModel(QObject* parent); - ~EntityExplorerModel(); - QVariant data(const QModelIndex& index, int role) const; - Qt::ItemFlags flags(const QModelIndex& index) const; - QVariant headerData(int section, Qt::Orientation orientation, - int role=Qt::DisplayRole) const; - QModelIndex index(int row, int column, - const QModelIndex& parent=QModelIndex()) const; - QModelIndex parent(const QModelIndex& index) const; - int rowCount(const QModelIndex& parent=QModelIndex()) const; - int columnCount(const QModelIndex& parent=QModelIndex()) const; -public: - virtual void ObjectAdded(const gfx::GfxObjP& object); -private: - mol::EntityView GetEntity(const QModelIndex& index) const; - mol::ChainView GetChain(const QModelIndex& index) const; - mol::ResidueView GetResidue(const QModelIndex& index) const; - MenuItem* root_; -}; - -}} - -#endif diff --git a/modules/gui/src/entity_explorer/info_panel.cc b/modules/gui/src/entity_explorer/info_panel.cc deleted file mode 100644 index 55f7a0160..000000000 --- a/modules/gui/src/entity_explorer/info_panel.cc +++ /dev/null @@ -1,34 +0,0 @@ -//------------------------------------------------------------------------------ -// This file is part of the OpenStructure project <www.openstructure.org> -// -// Copyright (C) 2008-2011 by the OpenStructure authors -// -// 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; either version 3.0 of the License, or (at your option) -// any later version. -// 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 "info_panel.hh" - -namespace ost { namespace gui { - -InfoPanel::InfoPanel(QWidget* parent) - : QWidget(parent), menu_item_(NULL) { -} - -void InfoPanel::Update() { - if (!menu_item_) - return; - -} - -}} - diff --git a/modules/gui/src/entity_explorer/info_panel.hh b/modules/gui/src/entity_explorer/info_panel.hh deleted file mode 100644 index 6f687c5b7..000000000 --- a/modules/gui/src/entity_explorer/info_panel.hh +++ /dev/null @@ -1,49 +0,0 @@ -//------------------------------------------------------------------------------ -// This file is part of the OpenStructure project <www.openstructure.org> -// -// Copyright (C) 2008-2011 by the OpenStructure authors -// -// 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; either version 3.0 of the License, or (at your option) -// any later version. -// 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 OST_GUI_INFO_PANEL_HH -#define OST_GUI_INFO_PANEL_HH - -#include <ost/gui/module_config.hh> - -#include <QWidget> -#include <QTableWidget> - -namespace ost { namespace gui { - -class MenuItem; - -/// \brief info panel -class DLLEXPORT_OST_GUI InfoPanel : public QWidget { - Q_OBJECT; -public: - InfoPanel(QWidget* parent); - - void SetData(MenuItem* menu_item) { - menu_item_=menu_item; - this->Update(); - } -private: - void Update(); - MenuItem* menu_item_; - QTableWidget* table_; -}; - -}} - -#endif diff --git a/modules/gui/src/entity_explorer/menu_item.cc b/modules/gui/src/entity_explorer/menu_item.cc deleted file mode 100644 index 09f17e3e9..000000000 --- a/modules/gui/src/entity_explorer/menu_item.cc +++ /dev/null @@ -1,18 +0,0 @@ -//------------------------------------------------------------------------------ -// This file is part of the OpenStructure project <www.openstructure.org> -// -// Copyright (C) 2008-2011 by the OpenStructure authors -// -// 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; either version 3.0 of the License, or (at your option) -// any later version. -// 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 -//------------------------------------------------------------------------------ diff --git a/modules/gui/src/entity_explorer/menu_item.hh b/modules/gui/src/entity_explorer/menu_item.hh deleted file mode 100644 index 28ac6ebf5..000000000 --- a/modules/gui/src/entity_explorer/menu_item.hh +++ /dev/null @@ -1,196 +0,0 @@ -//------------------------------------------------------------------------------ -// This file is part of the OpenStructure project <www.openstructure.org> -// -// Copyright (C) 2008-2011 by the OpenStructure authors -// -// 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; either version 3.0 of the License, or (at your option) -// any later version. -// 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 OST_GUI_MENU_ITEM_HH -#define OST_GUI_MENU_ITEM_HH - -#include <boost/checked_delete.hpp> - -#include <ost/dyn_cast.hh> -#include <ost/mol/mol.hh> - -#include <ost/gfx/gfx_object.hh> -#include <ost/gfx/scene.hh> -#include <ost/gfx/entity.hh> - -// Qt includes must come last -#include <QVariant> - -namespace ost { namespace gui { - -class DLLEXPORT_OST_GUI MenuItem { -public: - MenuItem(MenuItem* parent) - :parent_(parent) { - } - - MenuItem* Parent() { - return parent_; - } - - std::vector<MenuItem*>& Children() { - return children_; - } - - virtual ~MenuItem() { - std::for_each(children_.begin(), children_.end(), - boost::checked_deleter<MenuItem>()); - } - virtual int Row() const { - return 0; - } - virtual QVariant Data() {return QVariant();}; -private: - MenuItem* parent_; - std::vector<MenuItem*> children_; -}; - -class DLLEXPORT_OST_GUI AtomViewMenuItem : public MenuItem { -public: - AtomViewMenuItem(MenuItem* parent, const mol::AtomView& atom) - : MenuItem(parent), atom_(atom) { - } - - mol::AtomView& Atom() { - return atom_; - } - - virtual QVariant Data() { - return QVariant(QString(atom_.GetName().c_str())); - } - - virtual int Row() const { - mol::ResidueView r=atom_.GetResidue(); - mol::AtomViewList::const_iterator i=std::find(r.GetAtomList().begin(), - r.GetAtomList().end(), - atom_); - assert(i!=r.GetAtomList().end()); - return std::distance(r.GetAtomList().begin(), i); - } - -private: - mol::AtomView atom_; -}; - -class DLLEXPORT_OST_GUI ResidueViewMenuItem : public MenuItem { -public: - ResidueViewMenuItem(MenuItem* parent, const mol::ResidueView& residue) - : MenuItem(parent), residue_(residue) { - mol::AtomViewList::const_iterator i=residue.GetAtomList().begin(); - for (; i!= residue.GetAtomList().end(); ++i) { - Children().push_back(new AtomViewMenuItem(this, *i)); - } - } - - mol::ResidueView& Residue() { - return residue_; - } - - virtual QVariant Data() { - String text=residue_.GetKey()+residue_.GetNumber().AsString(); - return QVariant(QString(text.c_str())); - } - - virtual int Row() const { - mol::ChainView c=residue_.GetChain(); - mol::ResidueViewList::const_iterator i=std::find(c.GetResidueList().begin(), - c.GetResidueList().end(), - residue_); - assert(i!=c.GetResidueList().end()); - return std::distance(c.GetResidueList().begin(), i); - } - -private: - mol::ResidueView residue_; -}; - -class DLLEXPORT_OST_GUI ChainViewMenuItem : public MenuItem { -public: - ChainViewMenuItem(MenuItem* parent, const mol::ChainView& chain) - : MenuItem(parent), chain_(chain) { - mol::ResidueViewList::const_iterator i=chain.GetResidueList().begin(); - for (; i!= chain.GetResidueList().end(); ++i) { - Children().push_back(new ResidueViewMenuItem(this, *i)); - } - } - - mol::ChainView& Chain() { - return chain_; - } - virtual QVariant Data() { - return QVariant(QString(chain_.GetName().c_str())); - } - virtual int Row() const { - mol::EntityView e=chain_.GetEntity(); - mol::ChainViewList::const_iterator i=std::find(e.GetChainList().begin(), - e.GetChainList().end(), - chain_); - assert(i!=e.GetChainList().end()); - return std::distance(e.GetChainList().begin(), i); - } -private: - mol::ChainView chain_; -}; - -class DLLEXPORT_OST_GUI GfxObjMenuItem : public MenuItem { -public: - GfxObjMenuItem(MenuItem* parent, const gfx::GfxObjP& p): - MenuItem(parent), object_(p) { - mol::EntityView ev; - gfx::EntityP ecp = dyn_cast<gfx::Entity>(p); - if(ecp) { - ev=ecp->GetView(); - } - - if(!ev) return; - - mol::ChainViewList::const_iterator i=ev.GetChainList().begin(); - for (; i!= ev.GetChainList().end(); ++i) { - Children().push_back(new ChainViewMenuItem(this, *i)); - } - } - - gfx::GfxObjP Object() { - return object_; - } - - virtual QVariant Data() { - return QVariant(object_->GetName().c_str()); - } - - virtual int Row() const { -#if 0 - // needs new GfxNodeVisitor implementation - gfx::Scene& sc=gfx::Scene::Instance(); - gfx::GfxObjList::iterator i=std::find(sc.SceneObjects().begin(), - sc.SceneObjects().begin(), - object_); - assert(i!=sc.SceneObjects().end()); - return std::distance(sc.SceneObjects().begin(), i); -#else - return 0; -#endif - } - -private: - gfx::GfxObjP object_; -}; - -}} - -#endif -- GitLab From 8d77653c498134ec96ea28426a6cefeda5c2d129 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Fri, 25 Feb 2011 11:08:48 +0100 Subject: [PATCH 50/59] silence warning --- modules/io/src/mol/entity_io_mae_handler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/io/src/mol/entity_io_mae_handler.cc b/modules/io/src/mol/entity_io_mae_handler.cc index c1c477c3a..a60b913f3 100644 --- a/modules/io/src/mol/entity_io_mae_handler.cc +++ b/modules/io/src/mol/entity_io_mae_handler.cc @@ -185,7 +185,7 @@ void MAEReader::parse_and_add_atom(mol::EntityHandle ent, std::string rname("UNK"); std::string cname("X"); geom::Vec3 apos; - int irnum; + int irnum=0; LOG_TRACE("[" << std::string(line) << "]"); -- GitLab From baad29c26d6e765c7c98df9d77a58dc083036d58 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Fri, 25 Feb 2011 11:45:49 +0100 Subject: [PATCH 51/59] added blurps about "picking the right branch" and "updating the source code" to installation instructions --- modules/doc/install.rst | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/modules/doc/install.rst b/modules/doc/install.rst index 0c415c5fb..ae1692745 100644 --- a/modules/doc/install.rst +++ b/modules/doc/install.rst @@ -81,6 +81,16 @@ The above command will clone OpenStructre into the directory called `directory-n git config --global http.sslVerify false +Picking the right branch +-------------------------------------------------------------------------------- + +By default you are checking out the master branch. Master is, by definition a stable branch. It always points to the latest release. However, there are several other branches at your disposal. The main development is happening in the develop branch. It contains the newest features and bug fixes. However, we dont't make any guarantees that the develop branch is bug free and doesn't contain major bugs. After all, it's in constant flux. If you are developing new features, start your feature branch off develop. Besides that, there are several smaller features branches that are used to group together commits for one specific features. To change to a specific branch, use + +.. code-block:: bash + + git checkout <branch-name> + + Configuring -------------------------------------------------------------------------------- @@ -172,7 +182,6 @@ run multiple jobs at once. On Windows run 'Build OpenStructure' from the build menu. - What's next? -------------------------------------------------------------------------------- @@ -189,3 +198,14 @@ or, to start the command-line interpreter: stage/bin/ost If you repeatedly use OpenStructure, it is recommended to add /path/to/dng/stage/bin to your path. + +Getting the newest changes +-------------------------------------------------------------------------------- + +To get the newest changes from the central git repository, enter + +.. code-block:: bash + + git pull + +in your terminal. This will fetch the newest changes. \ No newline at end of file -- GitLab From 77cd46e37a1097a6c9db7e625806ba262eb258f8 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Fri, 25 Feb 2011 11:46:16 +0100 Subject: [PATCH 52/59] use ost.VERSION to set version number of documentation --- doc/conf/conf.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/conf/conf.py b/doc/conf/conf.py index c99ef1783..d3d1736f3 100644 --- a/doc/conf/conf.py +++ b/doc/conf/conf.py @@ -20,6 +20,7 @@ sys.path.append(os.path.join(os.path.abspath('../..'), 'stage/lib/openstructure')) sys.path.append(os.path.join(os.path.abspath('../..'), 'stage/lib64/openstructure')) +import ost # -- General configuration ----------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be extensions @@ -49,9 +50,9 @@ copyright = u'2010, OpenStructure authors' # built documents. # # The short X.Y version. -version = '1.1' +version = ost.VERSION # The full version, including alpha/beta/rc tags. -release = '1.1' +release = ost.VERSION # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. -- GitLab From 18c9f1a004b3ed4cafdf3e0dd6f85ce70302c300 Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Sat, 19 Feb 2011 14:59:28 -0500 Subject: [PATCH 53/59] added string glob in query --- modules/mol/base/tests/test_query.cc | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/modules/mol/base/tests/test_query.cc b/modules/mol/base/tests/test_query.cc index f868c468a..b41ae5db0 100644 --- a/modules/mol/base/tests/test_query.cc +++ b/modules/mol/base/tests/test_query.cc @@ -123,8 +123,6 @@ BOOST_AUTO_TEST_CASE(test_query_parse_properties) BOOST_CHECK(Query("grtest:2=8").IsValid()); BOOST_CHECK(Query("gctest:3.0=9").IsValid()); BOOST_CHECK(Query("anita=3").IsValid()==false); - BOOST_CHECK(Query("gc*test=3").IsValid()==false); - BOOST_CHECK(Query("gc?test=3").IsValid()==false); } BOOST_AUTO_TEST_CASE(test_query_parse_value_type) @@ -281,10 +279,7 @@ BOOST_AUTO_TEST_CASE(test_glob) ensure_counts(e, "rname=ARG and aname=N?1", 1, 1, 1); ensure_counts(e, "rname=ARG and aname=NH?", 1, 1, 2); ensure_counts(e, "rname=ARG and aname=\"*2\"", 1, 1, 1); - ensure_counts(e, "rname=ARG and aname=*2", 1, 1, 1); - ensure_counts(e, "rname=ARG and aname=N?", 1, 1, 1); - ensure_counts(e, "rname=LEU and aname=\"?D?\"", 1, 1, 2); - ensure_counts(e, "rname=LEU and aname=?D?", 1, 1, 2); + //ensure_counts(e, "rname=ARG and aname=N?", 1, 1, 1); } BOOST_AUTO_TEST_SUITE_END() -- GitLab From 910e3deedb4bbc44e0a8571afef30f3d388e2004 Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Tue, 22 Feb 2011 11:04:09 -0500 Subject: [PATCH 54/59] unit test tweaks --- modules/mol/base/tests/test_query.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/mol/base/tests/test_query.cc b/modules/mol/base/tests/test_query.cc index b41ae5db0..0e474611a 100644 --- a/modules/mol/base/tests/test_query.cc +++ b/modules/mol/base/tests/test_query.cc @@ -279,7 +279,8 @@ BOOST_AUTO_TEST_CASE(test_glob) ensure_counts(e, "rname=ARG and aname=N?1", 1, 1, 1); ensure_counts(e, "rname=ARG and aname=NH?", 1, 1, 2); ensure_counts(e, "rname=ARG and aname=\"*2\"", 1, 1, 1); - //ensure_counts(e, "rname=ARG and aname=N?", 1, 1, 1); + ensure_counts(e, "rname=ARG and aname=N?", 1, 1, 1); + ensure_counts(e, "rname=LEU and aname=\"?D?\"", 1, 1, 2); } BOOST_AUTO_TEST_SUITE_END() -- GitLab From 85459226078378b555c772c907201e70ce856a00 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Wed, 23 Feb 2011 18:32:29 +0100 Subject: [PATCH 55/59] =?UTF-8?q?also=20parse=20queries=20like=20'aname=3D?= =?UTF-8?q?=3FG'=20correctly?= --- modules/mol/base/tests/test_query.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/mol/base/tests/test_query.cc b/modules/mol/base/tests/test_query.cc index 0e474611a..f868c468a 100644 --- a/modules/mol/base/tests/test_query.cc +++ b/modules/mol/base/tests/test_query.cc @@ -123,6 +123,8 @@ BOOST_AUTO_TEST_CASE(test_query_parse_properties) BOOST_CHECK(Query("grtest:2=8").IsValid()); BOOST_CHECK(Query("gctest:3.0=9").IsValid()); BOOST_CHECK(Query("anita=3").IsValid()==false); + BOOST_CHECK(Query("gc*test=3").IsValid()==false); + BOOST_CHECK(Query("gc?test=3").IsValid()==false); } BOOST_AUTO_TEST_CASE(test_query_parse_value_type) @@ -279,8 +281,10 @@ BOOST_AUTO_TEST_CASE(test_glob) ensure_counts(e, "rname=ARG and aname=N?1", 1, 1, 1); ensure_counts(e, "rname=ARG and aname=NH?", 1, 1, 2); ensure_counts(e, "rname=ARG and aname=\"*2\"", 1, 1, 1); + ensure_counts(e, "rname=ARG and aname=*2", 1, 1, 1); ensure_counts(e, "rname=ARG and aname=N?", 1, 1, 1); ensure_counts(e, "rname=LEU and aname=\"?D?\"", 1, 1, 2); + ensure_counts(e, "rname=LEU and aname=?D?", 1, 1, 2); } BOOST_AUTO_TEST_SUITE_END() -- GitLab From eaed2bd6c200db53ccb4877148ba6a25a2004a86 Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Wed, 23 Feb 2011 15:24:56 -0500 Subject: [PATCH 56/59] added a io/mae profiling test --- modules/io/src/mol/entity_io_mae_handler.cc | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/modules/io/src/mol/entity_io_mae_handler.cc b/modules/io/src/mol/entity_io_mae_handler.cc index a60b913f3..73c7c822b 100644 --- a/modules/io/src/mol/entity_io_mae_handler.cc +++ b/modules/io/src/mol/entity_io_mae_handler.cc @@ -364,8 +364,14 @@ mol::EntityHandle LoadMAE(const String& file_name) MAEReader reader(file_name); mol::EntityHandle ent=mol::CreateEntity(); mol::XCSEditor editor=ent.EditXCS(mol::BUFFERED_EDIT); - reader.Import(ent); - conop::Conopology::Instance().ConnectAll(builder,ent); + { + Profile profile("import MAE"); + reader.Import(ent); + } + { + Profile profile("connect all"); + conop::Conopology::Instance().ConnectAll(builder,ent); + } return ent; } -- GitLab From 320730f8a93fe792176be7a3269e302eda125b77 Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Thu, 24 Feb 2011 15:43:22 -0500 Subject: [PATCH 57/59] fixed slow MAE import; debug output cleanup --- modules/io/src/mol/entity_io_mae_handler.cc | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/modules/io/src/mol/entity_io_mae_handler.cc b/modules/io/src/mol/entity_io_mae_handler.cc index 73c7c822b..a60b913f3 100644 --- a/modules/io/src/mol/entity_io_mae_handler.cc +++ b/modules/io/src/mol/entity_io_mae_handler.cc @@ -364,14 +364,8 @@ mol::EntityHandle LoadMAE(const String& file_name) MAEReader reader(file_name); mol::EntityHandle ent=mol::CreateEntity(); mol::XCSEditor editor=ent.EditXCS(mol::BUFFERED_EDIT); - { - Profile profile("import MAE"); - reader.Import(ent); - } - { - Profile profile("connect all"); - conop::Conopology::Instance().ConnectAll(builder,ent); - } + reader.Import(ent); + conop::Conopology::Instance().ConnectAll(builder,ent); return ent; } -- GitLab From dae2c9311792895a57dee14bb3a5f54a88b5e2fe Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Fri, 25 Feb 2011 11:47:48 -0500 Subject: [PATCH 58/59] fixed problems when having empty renderers in gfx.entity --- modules/gfx/src/entity.cc | 54 +++++++++++---------- modules/gfx/src/impl/trace_renderer_base.cc | 11 +++-- 2 files changed, 35 insertions(+), 30 deletions(-) diff --git a/modules/gfx/src/entity.cc b/modules/gfx/src/entity.cc index 90d16501b..07a38b28f 100644 --- a/modules/gfx/src/entity.cc +++ b/modules/gfx/src/entity.cc @@ -229,10 +229,13 @@ void Entity::Rebuild() trace_.ResetView(nv); for (RendererMap::iterator i=renderer_.begin(), e=renderer_.end(); i!=e; ++i) { - i->second->ClearViews(); - i->second->AddView(nv); - i->second->UpdateViews(); - i->second->PrepareRendering(); + impl::EntityRenderer* r=i->second; + if (r->IsEnabled() && r->HasDataToRender()) { + i->second->ClearViews(); + i->second->AddView(nv); + i->second->UpdateViews(); + i->second->PrepareRendering(); + } } } @@ -332,11 +335,13 @@ bool Entity::UpdateIfNeeded() const for (RendererMap::iterator i=renderer_.begin(), e=renderer_.end(); i!=e; ++i) { EntityRenderer* renderer =i->second; - if (renderer->IsDirty()) { - renderer->PrepareRendering(); - updated=true; + if (renderer->IsEnabled() && renderer->HasDataToRender()) { + if (renderer->IsDirty()) { + renderer->PrepareRendering(); + updated=true; + } + renderer->VA().SetOpacity(opacity_); } - renderer->VA().SetOpacity(opacity_); } if (updated) { this->CacheBoundingBox(); @@ -361,7 +366,10 @@ void Entity::RefreshVA() { for (RendererMap::iterator i=renderer_.begin(), e=renderer_.end(); i!=e; ++i) { - i->second->Debug(debug_flags_); + EntityRenderer* renderer =i->second; + if (renderer->IsEnabled() && renderer->HasDataToRender()) { + renderer->Debug(debug_flags_); + } } } @@ -370,7 +378,7 @@ void Entity::CustomRenderGL(RenderPass pass) for (RendererMap::iterator i=renderer_.begin(), e=renderer_.end(); i!=e; ++i) { impl::EntityRenderer* r=i->second; - if(r->IsEnabled()) { + if(r->IsEnabled() && r->HasDataToRender()) { if(pass==STANDARD_RENDER_PASS) { r->Render(pass); if(outline_flag_) { @@ -398,7 +406,7 @@ void Entity::CustomRenderGL(RenderPass pass) void Entity::CustomRenderPov(PovState& pov) { for (RendererMap::iterator it=renderer_.begin(); it!=renderer_.end(); ++it) { - if(it->second->IsEnabled()){ + if(it->second->IsEnabled() && it->second->HasDataToRender()){ it->second->RenderPov(pov,GetName()); } } @@ -524,7 +532,7 @@ RenderOptionsPtr Entity::GetOptions(RenderMode::Type render_mode) } void Entity::SetOptions(RenderMode::Type render_mode, - RenderOptionsPtr& render_options) + RenderOptionsPtr& render_options) { if(!render_options) return; RendererMap::iterator i=renderer_.find(render_mode); @@ -534,13 +542,13 @@ void Entity::SetOptions(RenderMode::Type render_mode, EntityP e=boost::dynamic_pointer_cast<Entity>(shared_from_this()); RenderOptionsPtr old_render_options = entity_renderer->GetOptions(); if(old_render_options) { - old_render_options->RemoveObserver(e); + old_render_options->RemoveObserver(e); } entity_renderer->SetOptions(render_options); render_options->AddObserver(e); FlagRebuild(); Scene::Instance().RequestRedraw(); - } else{ + } else { throw Error("These render options are not compatible with this render mode."); } } else { @@ -549,7 +557,7 @@ void Entity::SetOptions(RenderMode::Type render_mode, } void Entity::ApplyOptions(RenderMode::Type render_mode, - RenderOptionsPtr& render_options) + RenderOptionsPtr& render_options) { RendererMap::iterator i=renderer_.find(render_mode); if(i!=renderer_.end()) { @@ -587,9 +595,7 @@ void Entity::SetOpacity(float f) void Entity::SetOutlineWidth(float f) { for (RendererMap::iterator it=renderer_.begin(); it!=renderer_.end(); ++it) { - if(it->second->IsEnabled()){ - it->second->VA().SetOutlineWidth(f); - } + it->second->VA().SetOutlineWidth(f); } Scene::Instance().RequestRedraw(); } @@ -597,9 +603,7 @@ void Entity::SetOutlineWidth(float f) void Entity::SetOutlineExpandFactor(float f) { for (RendererMap::iterator it=renderer_.begin(); it!=renderer_.end(); ++it) { - if(it->second->IsEnabled()){ - it->second->VA().SetOutlineExpandFactor(f); - } + it->second->VA().SetOutlineExpandFactor(f); } Scene::Instance().RequestRedraw(); } @@ -607,9 +611,7 @@ void Entity::SetOutlineExpandFactor(float f) void Entity::SetOutlineExpandColor(const Color& c) { for (RendererMap::iterator it=renderer_.begin(); it!=renderer_.end(); ++it) { - if(it->second->IsEnabled()){ - it->second->VA().SetOutlineExpandColor(c); - } + it->second->VA().SetOutlineExpandColor(c); } Scene::Instance().RequestRedraw(); } @@ -928,7 +930,9 @@ template <typename I, typename O> void apply_color_op_to_renderer_list(I begin, I end, const O& o) { for (I i=begin; i!=end; ++i) { - i->second->Apply(o); + if(i->second->IsEnabled() && i->second->HasDataToRender()) { + i->second->Apply(o); + } } } diff --git a/modules/gfx/src/impl/trace_renderer_base.cc b/modules/gfx/src/impl/trace_renderer_base.cc index 81a6fb979..ce014610e 100644 --- a/modules/gfx/src/impl/trace_renderer_base.cc +++ b/modules/gfx/src/impl/trace_renderer_base.cc @@ -48,14 +48,15 @@ inline void apply_color_op(TraceRendererBase* rend, BackboneTrace& trace_subset, for (int node_list=0; node_list<trace_subset.GetListCount(); ++node_list) { NodeEntryList& nl=trace_subset.GetList(node_list); for (unsigned int i=0; i<nl.size();++i) { - if (q.IsAtomSelected(nl[i].atom)) { - Color clr =get_col.ColorOfAtom(nl[i].atom); - set_node_entry_color(nl[i],mask,clr); + if(nl[i].atom.IsValid()) { + if (q.IsAtomSelected(nl[i].atom)) { + Color clr =get_col.ColorOfAtom(nl[i].atom); + set_node_entry_color(nl[i],mask,clr); + } } } } - } - else{ + } else { mol::EntityView view = op.GetView(); for (int node_list=0; node_list<trace_subset.GetListCount(); ++node_list) { NodeEntryList& nl=trace_subset.GetList(node_list); -- GitLab From b27653ef778172221b08e7b1049553def69b96d9 Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Fri, 25 Feb 2011 16:54:17 -0500 Subject: [PATCH 59/59] fixed view update in gfx entity --- modules/gfx/src/entity.cc | 61 ++++++++++++++++++++++----------------- modules/gfx/src/entity.hh | 11 ++++--- 2 files changed, 42 insertions(+), 30 deletions(-) diff --git a/modules/gfx/src/entity.cc b/modules/gfx/src/entity.cc index 07a38b28f..0317fd8ea 100644 --- a/modules/gfx/src/entity.cc +++ b/modules/gfx/src/entity.cc @@ -222,31 +222,19 @@ void Entity::SetBlurFactors(float bf1,float bf2) void Entity::Rebuild() { - geom::Vec3 delta=GetTF().GetTrans()-GetTF().GetCenter(); + do_update_view(); // if necessary, update the views + this->ReapplyColorOps(); // re-color everything - if(update_view_) { - EntityView nv=this->GetView(); - trace_.ResetView(nv); - for (RendererMap::iterator i=renderer_.begin(), - e=renderer_.end(); i!=e; ++i) { - impl::EntityRenderer* r=i->second; - if (r->IsEnabled() && r->HasDataToRender()) { - i->second->ClearViews(); - i->second->AddView(nv); - i->second->UpdateViews(); - i->second->PrepareRendering(); - } - } - } + FlagRebuild(); // force renderer rebuilds in RenderGL call + Scene::Instance().RequestRedraw(); - this->ReapplyColorOps(); - FlagRebuild(); + // update center in transformation geom::Vec3 center=this->GetCenter(); Transform tf=this->GetTF(); tf.SetCenter(center); - tf.SetTrans(center+delta); + tf.SetTrans(center+GetTF().GetTrans()-GetTF().GetCenter()); this->SetTF(tf); - Scene::Instance().RequestRedraw(); + } void Entity::UpdatePositions() @@ -256,6 +244,7 @@ void Entity::UpdatePositions() impl::EntityRenderer* r=i->second; r->FlagPositionsDirty(); } + // Rebuild() here causes an recursive loop... FlagRebuild(); Scene::Instance().RequestRedraw(); } @@ -845,10 +834,7 @@ void Entity::ColorBy(const String& prop, mol::EntityView Entity::GetView() const { - if (update_view_) { - update_view_=false; - cached_view_=qv_.GetEntityView(); - } + do_update_view(); return cached_view_; } @@ -1018,11 +1004,12 @@ void Entity::ReapplyColorOps() GfxObj::ReapplyColorOps(); } -void Entity::UpdateView() +void Entity::UpdateView() { - update_view_=true; + update_view_=true; Rebuild(); - UpdatePositions(); + FlagRebuild(); + Scene::Instance().RequestRedraw(); } void Entity::SetSeqHack(bool b) @@ -1030,6 +1017,7 @@ void Entity::SetSeqHack(bool b) if(b!=trace_.GetSeqHack()) { trace_.SetSeqHack(b); FlagRebuild(); + Scene::Instance().RequestRedraw(); } } @@ -1038,4 +1026,25 @@ bool Entity::GetSeqHack() const return trace_.GetSeqHack(); } +void Entity::do_update_view() const +{ + // also signals an update in positions + if (update_view_) { + update_view_=false; + cached_view_=qv_.GetEntityView(); + trace_.ResetView(cached_view_); + for (RendererMap::iterator i=renderer_.begin(), + e=renderer_.end(); i!=e; ++i) { + impl::EntityRenderer* r=i->second; + if (r->IsEnabled() && r->HasDataToRender()) { + r->ClearViews(); + r->AddView(cached_view_); + r->UpdateViews(); + r->FlagPositionsDirty(); + r->PrepareRendering(); + } + } + } +} + }} // ns diff --git a/modules/gfx/src/entity.hh b/modules/gfx/src/entity.hh index d8571fcfc..1073b561a 100644 --- a/modules/gfx/src/entity.hh +++ b/modules/gfx/src/entity.hh @@ -155,8 +155,12 @@ public: void Rebuild(); /// \brief only grab updated positions, dont rebuild the whole thing + /// views won't be regenerated from stored queries void UpdatePositions(); + /// \brief forces all views to be regenerated from stored queries + void UpdateView(); + /// \brief set color for selection void SetColor(const Color& col, const String& selection=String("")); @@ -276,8 +280,6 @@ public: RenderOptionsPtr& render_options); bool HasSelection() const; - void UpdateView(); - void SetSeqHack(bool b); bool GetSeqHack() const; @@ -298,12 +300,13 @@ private: mutable geom::AlignedCuboid bbox_; mol::EntityView sel_; bool sel_update_; - impl::BackboneTrace trace_; + mutable impl::BackboneTrace trace_; void init(RenderMode::Type); void set_static_max_rad(); - + void do_update_view() const; + typedef boost::ptr_map<RenderMode::Type, impl::EntityRenderer> RendererMap; mutable RendererMap renderer_; -- GitLab