From f62d20d5bd0ce57db022aae5545f7d57fa441cd6 Mon Sep 17 00:00:00 2001 From: Matt Rice Date: Thu, 21 Sep 2006 07:24:22 +0000 Subject: [PATCH] update copyright. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@23580 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 5 ++++ DBModeler/ConsistencyChecker.m | 2 +- DBModeler/DefaultColumnProvider.m | 2 +- DBModeler/EOAdditions.m | 2 +- DBModeler/Inspectors/AttributeInspector.h | 24 +++++++++++++++++++ DBModeler/Inspectors/AttributeInspector.m | 23 ++++++++++++++++++ DBModeler/Inspectors/RelationshipInspector.h | 24 +++++++++++++++++++ DBModeler/Inspectors/RelationshipInspector.m | 24 +++++++++++++++++++ DBModeler/MainModelEditor.h | 2 +- DBModeler/MainModelEditor.m | 2 +- DBModeler/Modeler.h | 2 +- DBModeler/ModelerAttributeEditor.m | 2 +- DBModeler/ModelerEntityEditor.m | 2 +- DBModeler/ModelerTableEmbedibleEditor.m | 2 +- DBModeler/Preferences.m | 2 +- DBModeler/SQLGenerator.m | 2 +- EOInterface/EODeprecated.h | 2 +- GDL2Palette/ConnectionInspector.h | 24 +++++++++++++++++++ GDL2Palette/ConnectionInspector.m | 24 +++++++++++++++++++ GDL2Palette/DisplayGroupInspector.h | 24 +++++++++++++++++++ GDL2Palette/DisplayGroupInspector.m | 24 +++++++++++++++++++ GDL2Palette/Foundation+Categories.h | 24 +++++++++++++++++++ GDL2Palette/Foundation+Categories.m | 25 ++++++++++++++++++++ GDL2Palette/IB+Categories.m | 24 +++++++++++++++++++ GDL2Palette/KeyWrapper.h | 4 ++-- GDL2Palette/KeyWrapper.m | 4 ++-- GDL2Palette/Palette.h | 25 ++++++++++++++++++++ GDL2Palette/Palette.m | 25 ++++++++++++++++++++ GDL2Palette/ResourceManager.h | 25 ++++++++++++++++++++ GDL2Palette/ResourceManager.m | 25 ++++++++++++++++++++ 30 files changed, 385 insertions(+), 16 deletions(-) diff --git a/ChangeLog b/ChangeLog index 519300e..c4ebcb2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,4 @@ + 2006-09-20 Matt Rice * EOInterface/EOGenericControlAssociation.m (-endEditing): @@ -6,6 +7,10 @@ * GDL2Palette/ConnectInspector.m: Replace static map table with walking the list of connectors. + * EOInterface/EODeprecated.h: Fix typo. + * DBModeler/*.[hm] + * GDL2Palette/*.[hm]: Update copyright. + 2006-09-19 Matt Rice * GDL2Palette/KeyWrapper.h: Add LocalType. diff --git a/DBModeler/ConsistencyChecker.m b/DBModeler/ConsistencyChecker.m index e6f22d3..3f8e799 100644 --- a/DBModeler/ConsistencyChecker.m +++ b/DBModeler/ConsistencyChecker.m @@ -2,7 +2,7 @@ ConsistencyChecker.m Author: Matt Rice - Date: Jul 2005 + Date: 2005, 2006 This file is part of DBModeler. diff --git a/DBModeler/DefaultColumnProvider.m b/DBModeler/DefaultColumnProvider.m index b4463bc..c408ae1 100644 --- a/DBModeler/DefaultColumnProvider.m +++ b/DBModeler/DefaultColumnProvider.m @@ -2,7 +2,7 @@ DefaultColumnProvider.m Author: Matt Rice - Date: Apr 2005 + Date: Apr 2005, 2006 This file is part of DBModeler. diff --git a/DBModeler/EOAdditions.m b/DBModeler/EOAdditions.m index f711d69..916f95f 100644 --- a/DBModeler/EOAdditions.m +++ b/DBModeler/EOAdditions.m @@ -2,7 +2,7 @@ EOAdditions.m Author: Matt Rice - Date: Apr 2005 + Date: 2005, 2006 This file is part of DBModeler. diff --git a/DBModeler/Inspectors/AttributeInspector.h b/DBModeler/Inspectors/AttributeInspector.h index 958b815..699b7ed 100644 --- a/DBModeler/Inspectors/AttributeInspector.h +++ b/DBModeler/Inspectors/AttributeInspector.h @@ -1,3 +1,27 @@ + +/* + AttributesInspector.h + + Author: Matt Rice + Date: 2005, 2006 + + This file is part of DBModeler. + + DBModeler is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + DBModeler 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with DBModeler; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ + #include #include diff --git a/DBModeler/Inspectors/AttributeInspector.m b/DBModeler/Inspectors/AttributeInspector.m index 0d19420..c2c2ce5 100644 --- a/DBModeler/Inspectors/AttributeInspector.m +++ b/DBModeler/Inspectors/AttributeInspector.m @@ -1,3 +1,26 @@ + +/* + AttributesInspector.m + + Author: Matt Rice + Date: 2005, 2006 + + This file is part of DBModeler. + + DBModeler is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + DBModeler 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with DBModeler; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #include "AttributeInspector.h" #include diff --git a/DBModeler/Inspectors/RelationshipInspector.h b/DBModeler/Inspectors/RelationshipInspector.h index 3cbc0e1..3693afe 100644 --- a/DBModeler/Inspectors/RelationshipInspector.h +++ b/DBModeler/Inspectors/RelationshipInspector.h @@ -1,3 +1,27 @@ + +/* + RelationshipInspector.h + + Author: Matt Rice + Date: Apr 2005 + + This file is part of DBModeler. + + DBModeler is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + DBModeler 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with DBModeler; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ + #include #include diff --git a/DBModeler/Inspectors/RelationshipInspector.m b/DBModeler/Inspectors/RelationshipInspector.m index 995b223..6ae91fc 100644 --- a/DBModeler/Inspectors/RelationshipInspector.m +++ b/DBModeler/Inspectors/RelationshipInspector.m @@ -1,3 +1,27 @@ + +/* + RelationshipInspector.m + + Author: Matt Rice + Date: 2005, 2006 + + This file is part of DBModeler. + + DBModeler is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + DBModeler 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with DBModeler; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ + #include "RelationshipInspector.h" #include diff --git a/DBModeler/MainModelEditor.h b/DBModeler/MainModelEditor.h index 981df0a..4001bbd 100644 --- a/DBModeler/MainModelEditor.h +++ b/DBModeler/MainModelEditor.h @@ -5,7 +5,7 @@ MainModelerEditor.h Author: Matt Rice - Date: Apr 2005 + Date: 2005, 2006 This file is part of DBModeler. diff --git a/DBModeler/MainModelEditor.m b/DBModeler/MainModelEditor.m index 31173eb..c3c9425 100644 --- a/DBModeler/MainModelEditor.m +++ b/DBModeler/MainModelEditor.m @@ -2,7 +2,7 @@ MainModelEditor.m Author: Matt Rice - Date: Apr 2005 + Date: 2005, 2006 This file is part of DBModeler. diff --git a/DBModeler/Modeler.h b/DBModeler/Modeler.h index a9f5187..1884735 100644 --- a/DBModeler/Modeler.h +++ b/DBModeler/Modeler.h @@ -5,7 +5,7 @@ Modeler.h Author: Matt Rice - Date: Apr 2005 + Date: 2005, 2006 This file is part of DBModeler. diff --git a/DBModeler/ModelerAttributeEditor.m b/DBModeler/ModelerAttributeEditor.m index e4ec205..62efe3e 100644 --- a/DBModeler/ModelerAttributeEditor.m +++ b/DBModeler/ModelerAttributeEditor.m @@ -2,7 +2,7 @@ ModelerAttributeEditor.m Author: Matt Rice - Date: Apr 2005 + Date: 2005, 2006 This file is part of DBModeler. diff --git a/DBModeler/ModelerEntityEditor.m b/DBModeler/ModelerEntityEditor.m index 01787ee..aff6499 100644 --- a/DBModeler/ModelerEntityEditor.m +++ b/DBModeler/ModelerEntityEditor.m @@ -2,7 +2,7 @@ ModelerEntityEditor.m Author: Matt Rice - Date: Apr 2005 + Date: 2005, 2006 This file is part of DBModeler. diff --git a/DBModeler/ModelerTableEmbedibleEditor.m b/DBModeler/ModelerTableEmbedibleEditor.m index 306c5fb..65fcb6a 100644 --- a/DBModeler/ModelerTableEmbedibleEditor.m +++ b/DBModeler/ModelerTableEmbedibleEditor.m @@ -2,7 +2,7 @@ ModelerTableEmbedibleEditor.m Author: Matt Rice - Date: Apr 2005 + Date: 2005, 2006 This file is part of DBModeler. diff --git a/DBModeler/Preferences.m b/DBModeler/Preferences.m index b65eb2b..1aa2f68 100644 --- a/DBModeler/Preferences.m +++ b/DBModeler/Preferences.m @@ -2,7 +2,7 @@ Preferences.m Author: Matt Rice - Date: Mar 2006 + Date: 2005, 2006 This file is part of DBModeler. diff --git a/DBModeler/SQLGenerator.m b/DBModeler/SQLGenerator.m index 916197e..89ffc24 100644 --- a/DBModeler/SQLGenerator.m +++ b/DBModeler/SQLGenerator.m @@ -2,7 +2,7 @@ SQLGenerator.m Author: Matt Rice - Date: Jul 2005 + Date: 2005, 2006 This file is part of DBModeler. diff --git a/EOInterface/EODeprecated.h b/EOInterface/EODeprecated.h index b3e1b48..0319911 100644 --- a/EOInterface/EODeprecated.h +++ b/EOInterface/EODeprecated.h @@ -1,5 +1,5 @@ /** -*-ObjC-*- - EODprecated.h + EODeprecated.h Copyright (C) 2004,2005 Free Software Foundation, Inc. diff --git a/GDL2Palette/ConnectionInspector.h b/GDL2Palette/ConnectionInspector.h index 11d5af5..d99e368 100644 --- a/GDL2Palette/ConnectionInspector.h +++ b/GDL2Palette/ConnectionInspector.h @@ -1,3 +1,27 @@ +/** + ConnectInspector.h + + Author: Matt Rice + Date: 2005, 2006 + + This file is part of GDL2Palette. + + + GDL2Palette is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + GDL2Palette 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GDL2Palette; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +**/ #include @class NSBrowser; @class NSPopUpButton; diff --git a/GDL2Palette/ConnectionInspector.m b/GDL2Palette/ConnectionInspector.m index b6cf567..6719a03 100644 --- a/GDL2Palette/ConnectionInspector.m +++ b/GDL2Palette/ConnectionInspector.m @@ -1,3 +1,27 @@ +/** + ConnectInspector.m + + Author: Matt Rice + Date: 2005, 2006 + + This file is part of GDL2Palette. + + + GDL2Palette is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + GDL2Palette 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GDL2Palette; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +**/ #include "ConnectionInspector.h" #include "Foundation+Categories.h" diff --git a/GDL2Palette/DisplayGroupInspector.h b/GDL2Palette/DisplayGroupInspector.h index 32a1b9b..56f97d2 100644 --- a/GDL2Palette/DisplayGroupInspector.h +++ b/GDL2Palette/DisplayGroupInspector.h @@ -1,3 +1,27 @@ +/** + DisplayGroupInspector.h + + Author: Matt Rice + Date: Sept 2006 + + This file is part of GDL2Palette. + + + GDL2Palette is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + GDL2Palette 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GDL2Palette; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +**/ #include #include diff --git a/GDL2Palette/DisplayGroupInspector.m b/GDL2Palette/DisplayGroupInspector.m index d779be7..e43ec9e 100644 --- a/GDL2Palette/DisplayGroupInspector.m +++ b/GDL2Palette/DisplayGroupInspector.m @@ -1,3 +1,27 @@ +/** + DisplayGroupInspector.m + + Author: Matt Rice + Date: Sept 2006 + + This file is part of GDL2Palette. + + + GDL2Palette is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + GDL2Palette 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GDL2Palette; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +**/ #include "DisplayGroupInspector.h" #include #include diff --git a/GDL2Palette/Foundation+Categories.h b/GDL2Palette/Foundation+Categories.h index 4c7d996..01cd3a2 100644 --- a/GDL2Palette/Foundation+Categories.h +++ b/GDL2Palette/Foundation+Categories.h @@ -1,3 +1,27 @@ +/** + Foundation+Categories.h + + Author: Matt Rice + Date: 2005 + + This file is part of GDL2Palette. + + + GDL2Palette is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + GDL2Palette 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GDL2Palette; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +**/ #include /* since we don't really have blocks and i don't feel like including them.. */ @interface NSArray (SelectorStuff) diff --git a/GDL2Palette/Foundation+Categories.m b/GDL2Palette/Foundation+Categories.m index d44e845..b564cec 100644 --- a/GDL2Palette/Foundation+Categories.m +++ b/GDL2Palette/Foundation+Categories.m @@ -1,3 +1,28 @@ +/** + Foundation+Categories.m + + Author: Matt Rice + Date: 2005, 2006 + + This file is part of GDL2Palette. + + + GDL2Palette is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + GDL2Palette 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GDL2Palette; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +**/ + #include "Foundation+Categories.h" /* since we don't really have blocks and i don't feel like including them.. */ diff --git a/GDL2Palette/IB+Categories.m b/GDL2Palette/IB+Categories.m index 0c29fb3..8191046 100644 --- a/GDL2Palette/IB+Categories.m +++ b/GDL2Palette/IB+Categories.m @@ -1,3 +1,27 @@ +/** + IB+Categories.m + + Author: Matt Rice + Date: 2005, 2006 + + This file is part of GDL2Palette. + + + GDL2Palette is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + GDL2Palette 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GDL2Palette; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +**/ #include #include diff --git a/GDL2Palette/KeyWrapper.h b/GDL2Palette/KeyWrapper.h index 10a1b63..733e137 100644 --- a/GDL2Palette/KeyWrapper.h +++ b/GDL2Palette/KeyWrapper.h @@ -7,12 +7,12 @@ This file is part of GDL2Palette. - DBModeler is free software; you can redistribute it and/or modify + GDL2Palette is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - DBModeler is distributed in the hope that it will be useful, + GDL2Palette 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 General Public License for more details. diff --git a/GDL2Palette/KeyWrapper.m b/GDL2Palette/KeyWrapper.m index 14e62f0..3978b78 100644 --- a/GDL2Palette/KeyWrapper.m +++ b/GDL2Palette/KeyWrapper.m @@ -7,12 +7,12 @@ This file is part of GDL2Palette. - DBModeler is free software; you can redistribute it and/or modify + GDL2Palette is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - DBModeler is distributed in the hope that it will be useful, + GDL2Palette 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 General Public License for more details. diff --git a/GDL2Palette/Palette.h b/GDL2Palette/Palette.h index 0318995..285a888 100644 --- a/GDL2Palette/Palette.h +++ b/GDL2Palette/Palette.h @@ -1,3 +1,28 @@ + +/** + Palette.h + + Author: Matt Rice + Date: May 2005 + + This file is part of GDL2Palette. + + + GDL2Palette is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + GDL2Palette 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GDL2Palette; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +**/ #include static NSConstantString *GDL2PaletteBundles; diff --git a/GDL2Palette/Palette.m b/GDL2Palette/Palette.m index 1c15d34..0470219 100644 --- a/GDL2Palette/Palette.m +++ b/GDL2Palette/Palette.m @@ -1,3 +1,28 @@ +/** + Palette.m + + Author: Matt Rice + Date: May 2005 + + This file is part of GDL2Palette. + + + GDL2Palette is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + GDL2Palette 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GDL2Palette; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +**/ + #include "Palette.h" #include "ResourceManager.h" #include diff --git a/GDL2Palette/ResourceManager.h b/GDL2Palette/ResourceManager.h index e4c1d45..2d9e16d 100644 --- a/GDL2Palette/ResourceManager.h +++ b/GDL2Palette/ResourceManager.h @@ -1,3 +1,28 @@ +/** + ResourceManager.h + + Author: Matt Rice + Date: 2005, 2006 + + This file is part of GDL2Palette. + + + GDL2Palette is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + GDL2Palette 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GDL2Palette; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +**/ + #include @class EOEditingContext; diff --git a/GDL2Palette/ResourceManager.m b/GDL2Palette/ResourceManager.m index cdb4c17..8ab32b2 100644 --- a/GDL2Palette/ResourceManager.m +++ b/GDL2Palette/ResourceManager.m @@ -1,3 +1,28 @@ +/** + ResourceManager.m + + Author: Matt Rice + Date: 2005, 2006 + + This file is part of GDL2Palette. + + + GDL2Palette is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + GDL2Palette 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GDL2Palette; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +**/ + #include "ResourceManager.h" #include