Author: gcasa
Date: Tue Mar 25 09:07:54 2014
New Revision: 37762

URL: http://svn.gna.org/viewcvs/gnustep?rev=37762&view=rev
Log:
Add object container.

Added:
    libs/gui/trunk/Source/GSXibObjectContainer.m
Modified:
    libs/gui/trunk/ChangeLog
    libs/gui/trunk/Headers/Additions/GNUstepGUI/GSXibObjectContainer.h
    libs/gui/trunk/Source/GNUmakefile
    libs/gui/trunk/Source/GSXibLoading.m

Modified: libs/gui/trunk/ChangeLog
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/gui/trunk/ChangeLog?rev=37762&r1=37761&r2=37762&view=diff
==============================================================================
--- libs/gui/trunk/ChangeLog    (original)
+++ libs/gui/trunk/ChangeLog    Tue Mar 25 09:07:54 2014
@@ -1,3 +1,10 @@
+2014-03-25 04:07-EDT Gregory John Casamento <[email protected]>
+
+       * Headers/Additions/GNUstepGUI/GSXibObjectContainer.h
+       * Source/GNUmakefile
+       * Source/GSXibLoading.m
+       * Source/GSXibObjectContainer.m: Add object container.
+
 2014-03-25 03:56-EDT Gregory John Casamento <[email protected]>
 
        * Headers/Additions/GNUstepGUI/GSXibElement.h

Modified: libs/gui/trunk/Headers/Additions/GNUstepGUI/GSXibObjectContainer.h
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/gui/trunk/Headers/Additions/GNUstepGUI/GSXibObjectContainer.h?rev=37762&r1=37761&r2=37762&view=diff
==============================================================================
--- libs/gui/trunk/Headers/Additions/GNUstepGUI/GSXibObjectContainer.h  
(original)
+++ libs/gui/trunk/Headers/Additions/GNUstepGUI/GSXibObjectContainer.h  Tue Mar 
25 09:07:54 2014
@@ -24,7 +24,12 @@
    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
 */
 
+#ifndef _GNUstep_H_GSXibObjectContainer
+#define _GNUstep_H_GSXibObjectContainer
+
 #import <Foundation/NSObject.h>
 
 @interface GSXibObjectContainer : NSObject
 @end
+
+#endif

Modified: libs/gui/trunk/Source/GNUmakefile
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/gui/trunk/Source/GNUmakefile?rev=37762&r1=37761&r2=37762&view=diff
==============================================================================
--- libs/gui/trunk/Source/GNUmakefile   (original)
+++ libs/gui/trunk/Source/GNUmakefile   Tue Mar 25 09:07:54 2014
@@ -250,6 +250,7 @@
 GSXibElement.m \
 GSXibLoader.m \
 GSXibLoading.m \
+GSXibObjectContainer.m \
 GSXibParser.m \
 GSHelpAttachment.m 
 
@@ -468,6 +469,7 @@
 GSWindowDecorationView.h \
 GSXibElement.h \
 GSXibLoading.h \
+GSXibObjectContainer.h \
 GSXibParser.h \
 GSHelpAttachment.h
 

Modified: libs/gui/trunk/Source/GSXibLoading.m
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/gui/trunk/Source/GSXibLoading.m?rev=37762&r1=37761&r2=37762&view=diff
==============================================================================
--- libs/gui/trunk/Source/GSXibLoading.m        (original)
+++ libs/gui/trunk/Source/GSXibLoading.m        Tue Mar 25 09:07:54 2014
@@ -1,5 +1,6 @@
 #import <Foundation/NSObject.h>
 #import <Foundation/NSKeyedArchiver.h>
+#import "GNUstepGUI/GSXibElement.h"
 
 @interface IBUserDefinedRuntimeAttributesPlaceholder : NSObject <NSCoding>
 {

Added: libs/gui/trunk/Source/GSXibObjectContainer.m
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/gui/trunk/Source/GSXibObjectContainer.m?rev=37762&view=auto
==============================================================================
--- libs/gui/trunk/Source/GSXibObjectContainer.m        (added)
+++ libs/gui/trunk/Source/GSXibObjectContainer.m        Tue Mar 25 09:07:54 2014
@@ -0,0 +1,31 @@
+/* <title>GSXibObjectContainer</title>
+
+   <abstract>Xib v5 (Cocoa XML) container</abstract>
+
+   Copyright (C) 2014 Free Software Foundation, Inc.
+
+   Written by: Gregory Casamento <[email protected]>
+   Created: March 2014
+
+   This file is part of the GNUstep Base Library.
+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Library General Public
+   License as published by the Free Software Foundation; either
+   version 2 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
+   Library General Public License for more details.
+
+   You should have received a copy of the GNU Library General Public
+   License along with this library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
+*/
+
+#import "GNUstepGUI/GSXibObjectContainer.h"
+
+@implementation GSXibObjectContainer
+@end
+


_______________________________________________
Gnustep-cvs mailing list
[email protected]
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to