1/*
2 * Copyright 2012 Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef GEARS_VIEW_H
6#define GEARS_VIEW_H
7
8
9#include <View.h>
10
11
12class BBitmap;
13
14class GearsView : public BView {
15public:
16								GearsView();
17	virtual						~GearsView();
18
19	virtual	void				Draw(BRect updateRect);
20
21protected:
22			void				_InitGearsBitmap();
23
24private:
25			BBitmap*			fGears;
26};
27
28
29#endif	/* GEARS_VIEW_H */
30