Add OCProperty

This commit is contained in:
Gregory John Casamento 2024-12-27 04:02:24 -05:00
parent 5b5ca6c09b
commit 85552db43e
4 changed files with 78 additions and 1 deletions

View file

@ -71,6 +71,7 @@ GormCore_HEADER_FILES = \
GormObjectInspector.h \
GormObjectMainView.h \
GormObjectOutlineView.h \
GormObjectViewController.h \
GormOpenGLView.h \
GormOutlineView.h \
GormPalettesManager.h \
@ -152,6 +153,7 @@ GormCore_OBJC_FILES = \
GormObjectInspector.m \
GormObjectMainView.m \
GormObjectOutlineView.m \
GormObjectViewController.m \
GormOpenGLView.m \
GormOutlineView.m \
GormPalettesManager.m \

View file

@ -25,7 +25,7 @@
#ifndef _GormObjectMainView_h_INCLUDE
#define _GormObjectMainView_h_INCLUDE
#import <AppKit/NSView.h>
#import <AppKit/AppKit.h>
#import <GNUstepBase/GSVersionMacros.h>
#if defined(__cplusplus)

View file

@ -0,0 +1,45 @@
/* Definition of class OCProperty
Copyright (C) 2024 Free Software Foundation, Inc.
By: Gregory John Casamento
Date: 27-12-2024
This file is part of GNUstep.
This library is free 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 2.1 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 USA.
*/
#ifndef _OCProperty_h_INCLUDE
#define _OCProperty_h_INCLUDE
#import "OCIVar.h"
#import <GNUstepBase/GSVersionMacros.h>
#if defined(__cplusplus)
extern "C" {
#endif
GS_EXPORT_CLASS
@interface OCProperty : OCIVar
@end
#if defined(__cplusplus)
}
#endif
#endif /* _OCProperty_h_INCLUDE */

View file

@ -0,0 +1,30 @@
/* Implementation of class OCProperty
Copyright (C) 2024 Free Software Foundation, Inc.
By: Gregory John Casamento
Date: 27-12-2024
This file is part of GNUstep.
This library is free 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 2.1 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 USA.
*/
#import "OCProperty.h"
@implementation OCProperty
@end