1/*
2	Copyright 1999, Be Incorporated.   All Rights Reserved.
3	This file may be used under the terms of the Be Sample Code License.
4*/
5
6#ifndef RESSCROLL_H
7#define RESSCROLL_H
8
9#include <ScrollBar.h>
10
11class ObjectView;
12
13class ResScroll : public BScrollBar {
14public:
15								ResScroll(BRect r, const char* name,
16									ObjectView* target, orientation posture);
17
18	virtual	void				ValueChanged(float value);
19
20private:
21			ObjectView*			fObjectView;
22};
23
24#endif // RESSCROLL_H
25