blob: b99fc2fe4aee4e56eef79685821731bfa8ceddd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef _MSTOP_H
#define _MSTOP_H
#include "MPictureButton.h"
#if __POWERPC__
#pragma simple_class_byval off
#endif
class IMPEXPLIBLAYOUT MStop : public MPictureButton
{
public: MStop(BHandler*);
MStop(BHandler *id, BMessage*);
MStop(BMessage*);
virtual ~MStop();
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
|