diff options
Diffstat (limited to 'beos/liblayout/MGroup.h')
-rw-r--r-- | beos/liblayout/MGroup.h | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/beos/liblayout/MGroup.h b/beos/liblayout/MGroup.h deleted file mode 100644 index 73dcbfb9c..000000000 --- a/beos/liblayout/MGroup.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - - MGroup is an abstract class from which all groups should derive. - -*/ - -#ifndef _MGROUP_H -#define _MGROUP_H - -#include "layout.h" -#include <View.h> - -#if __POWERPC__ -#pragma simple_class_byval off -#endif - -class IMPEXPLIBLAYOUT MGroup : public MView -{ - public: MGroup(); - virtual ~MGroup(); - - virtual void reloadfont(BFont *font[]); -}; - -typedef struct -{ - MView *kid; - int kidnum; -} sortstruct; - -#endif |