From: helge Date: Wed, 30 Jun 2004 08:29:07 +0000 (+0000) Subject: git-svn-id: http://svn.opengroupware.org/SOGo/trunk@94 d1b88da0-ebda-0310-925b-ed51d8... X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=000bb2bb60d5cf897c8df57ed65c64967eafe40b;p=scalable-opengroupware.org git-svn-id: http://svn.opengroupware.org/SOGo/trunk@94 d1b88da0-ebda-0310-925b-ed51d893ca5b --- diff --git a/SOGo/SoObjects/GNUmakefile b/SOGo/SoObjects/GNUmakefile new file mode 100644 index 00000000..3e2c043a --- /dev/null +++ b/SOGo/SoObjects/GNUmakefile @@ -0,0 +1,8 @@ +# $Id$ + +include $(GNUSTEP_MAKEFILES)/common.make + +SUBPROJECTS = \ + SOGo + +include $(GNUSTEP_MAKEFILES)/aggregate.make diff --git a/SOGo/SoObjects/SOGo/GNUmakefile b/SOGo/SoObjects/SOGo/GNUmakefile new file mode 100644 index 00000000..288c3505 --- /dev/null +++ b/SOGo/SoObjects/SOGo/GNUmakefile @@ -0,0 +1,21 @@ +# $Id$ + +include $(GNUSTEP_MAKEFILES)/common.make +-include ./Version + +LIBRARY_NAME = libSOGo + +libSOGo_SOVERSION=$(MAJOR_VERSION).$(MINOR_VERSION) + +libSOGo_HEADER_FILES_DIR = . +libSOGo_HEADER_FILES_INSTALL_DIR = /SOGo + +libSOGo_HEADER_FILES = \ + SOGoObject.h + +libSOGo_OBJC_FILES = \ + SOGoObject.m + +-include GNUmakefile.preamble +include $(GNUSTEP_MAKEFILES)/library.make +-include GNUmakefile.postamble diff --git a/SOGo/SoObjects/SOGo/SOGoObject.h b/SOGo/SoObjects/SOGo/SOGoObject.h new file mode 100644 index 00000000..b35f987a --- /dev/null +++ b/SOGo/SoObjects/SOGo/SOGoObject.h @@ -0,0 +1,34 @@ +/* + Copyright (C) 2004 SKYRIX Software AG + + This file is part of OpenGroupware.org. + + OGo 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, or (at your option) any + later version. + + OGo 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 OGo; see the file COPYING. If not, write to the + Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA + 02111-1307, USA. +*/ +// $Id$ + +#ifndef __SoObjects_SOGoObject_H__ +#define __SoObjects_SOGoObject_H__ + +#import + +@interface SOGoObject : NSObject +{ +} + +@end + +#endif /* __SoObjects_SOGoObject_H__ */ diff --git a/SOGo/SoObjects/SOGo/SOGoObject.m b/SOGo/SoObjects/SOGo/SOGoObject.m new file mode 100644 index 00000000..36480400 --- /dev/null +++ b/SOGo/SoObjects/SOGo/SOGoObject.m @@ -0,0 +1,32 @@ +/* + Copyright (C) 2004 SKYRIX Software AG + + This file is part of OpenGroupware.org. + + OGo 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, or (at your option) any + later version. + + OGo 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 OGo; see the file COPYING. If not, write to the + Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA + 02111-1307, USA. +*/ +// $Id$ + +#include "SOGoObject.h" +#include "common.h" + +@implementation SOGoObject + +- (void)dealloc { + [super dealloc]; +} + +@end /* SOGoObject */