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

#include "MPictureButton.h"

#if __POWERPC__
#pragma simple_class_byval off
#endif

class IMPEXPLIBLAYOUT MFFWD : public MPictureButton
{
	public:		MFFWD(BHandler *id=NULL);
				MFFWD(BHandler *id, BMessage*);
				MFFWD(BMessage*);
				virtual ~MFFWD();
				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