From 69f37b9feb1f0a52baf8626380048165646fa170 Mon Sep 17 00:00:00 2001 From: helge Date: Wed, 30 Jun 2004 09:04:21 +0000 Subject: [PATCH] git-svn-id: http://svn.opengroupware.org/SOGo/trunk@99 d1b88da0-ebda-0310-925b-ed51d893ca5b --- SOGo/SoObjects/SOGo/SOGoContentObject.h | 34 +++++++++++++++++++++++++ SOGo/SoObjects/SOGo/SOGoContentObject.m | 32 +++++++++++++++++++++++ 2 files changed, 66 insertions(+) create mode 100644 SOGo/SoObjects/SOGo/SOGoContentObject.h create mode 100644 SOGo/SoObjects/SOGo/SOGoContentObject.m diff --git a/SOGo/SoObjects/SOGo/SOGoContentObject.h b/SOGo/SoObjects/SOGo/SOGoContentObject.h new file mode 100644 index 00000000..0954f25c --- /dev/null +++ b/SOGo/SoObjects/SOGo/SOGoContentObject.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 __SOGo_SOGoContentObject_H__ +#define __SOGo_SOGoContentObject_H__ + +#include + +@interface SOGoContentObject : SOGoObject +{ +} + +@end + +#endif /* __SOGo_SOGoContentObject_H__ */ diff --git a/SOGo/SoObjects/SOGo/SOGoContentObject.m b/SOGo/SoObjects/SOGo/SOGoContentObject.m new file mode 100644 index 00000000..98a8216e --- /dev/null +++ b/SOGo/SoObjects/SOGo/SOGoContentObject.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 "SOGoContentObject.h" +#include "common.h" + +@implementation SOGoContentObject + +- (void)dealloc { + [super dealloc]; +} + +@end /* SOGoContentObject */ -- 2.39.5