mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 11:41:05 +00:00
Add OCProperty
This commit is contained in:
parent
5b5ca6c09b
commit
85552db43e
4 changed files with 78 additions and 1 deletions
|
@ -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 \
|
||||
|
|
|
@ -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)
|
||||
|
|
45
GormObjCHeaderParser/OCProperty.h
Normal file
45
GormObjCHeaderParser/OCProperty.h
Normal 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 */
|
||||
|
30
GormObjCHeaderParser/OCProperty.m
Normal file
30
GormObjCHeaderParser/OCProperty.m
Normal 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
|
||||
|
Loading…
Reference in a new issue