Adapted to recent changes of %build_linklib.
[AROS-Contrib.git] / FryingPan / framework / Generic / GenericOOP.h
blobccf9a59d0049ba902caa236bb88a1979fea6f48e
1 /*
2 * Amiga Generic Set - set of libraries and includes to ease sw development for all Amiga platforms
3 * Copyright (C) 2001-2011 Tomasz Wiszkowski Tomasz.Wiszkowski at gmail.com.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 #ifndef _GENERIC_OOP_H_
21 #define _GENERIC_OOP_H_
23 #include "Types.h"
24 #include <intuition/classes.h>
25 #include <intuition/classusr.h>
27 namespace GenNS
29 class GenericOOP
31 public:
32 GenericOOP();
33 virtual ~GenericOOP();
34 virtual uint32 DoMtd(Object* pObject, uint32 *pMsg);
35 virtual uint32 DoSuperMtd(IClass *pClass, Object* pObject, uint32 *pMsg);
36 virtual uint32 *NewObj(char* Name, uint32 FirstTag, ...);
37 virtual uint32 *NewObj(Class* cls, uint32 FirstTag, ...);
38 virtual void DisposeObj(uint32 *obj);
39 virtual void AddChildObj(Object *parent, uint32 *child);
40 virtual void RemChildObj(Object *parent, uint32 *child);
43 #endif