Skip to content

Commit

Permalink
Add OCProperty
Browse files Browse the repository at this point in the history
  • Loading branch information
gcasa committed Dec 27, 2024
1 parent 5b5ca6c commit 85552db
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 1 deletion.
2 changes: 2 additions & 0 deletions GormCore/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ GormCore_HEADER_FILES = \
GormObjectInspector.h \
GormObjectMainView.h \
GormObjectOutlineView.h \
GormObjectViewController.h \
GormOpenGLView.h \
GormOutlineView.h \
GormPalettesManager.h \
Expand Down Expand Up @@ -152,6 +153,7 @@ GormCore_OBJC_FILES = \
GormObjectInspector.m \
GormObjectMainView.m \
GormObjectOutlineView.m \
GormObjectViewController.m \
GormOpenGLView.m \
GormOutlineView.m \
GormPalettesManager.m \
Expand Down
2 changes: 1 addition & 1 deletion GormCore/GormObjectMainView.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
45 changes: 45 additions & 0 deletions GormObjCHeaderParser/OCProperty.h
Original file line number Diff line number Diff line change
@@ -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 changes: 30 additions & 0 deletions GormObjCHeaderParser/OCProperty.m
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 85552db

Please sign in to comment.