summaryrefslogtreecommitdiffstats
path: root/beos/liblayout/MRew.h
blob: f21683b5d2d34d521a3dd5268c1a979d04979ea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef _MREW_H
#define _MREW_H

#include "MPictureButton.h"

#if __POWERPC__
#pragma simple_class_byval off
#endif

class IMPEXPLIBLAYOUT MRew : public MPictureButton
{
	public:		MRew(BHandler*);
				MRew(BHandler *id, BMessage*);
				MRew(BMessage*);
				virtual ~MRew();
				virtual long Archive(BMessage *archive, bool deep=true) const;
				static BArchivable *Instantiate(BMessage *archive);
				virtual void MakePictures();
};
extern const IMPEXPLIBLAYOUT char M_BUTTON_POINTER[];

#endif