vfs: check userland buffers before reading them.
[haiku.git] / headers / libs / print / libprint / JSDSlider.h
blobee921ab18976dd3bc46bde6481750640b91f18e3
1 /*
2 JSDSlider.h
3 Dr.H.Reh
4 27.11.2004
6 Based on source code from Be Inc. RIP
7 Copyright 1995 Be Incorporated, All Rights Reserved.
8 */
10 #ifndef __JSD_SLIDER_H
11 #define __JSD_SLIDER_H
13 #include <Slider.h>
14 #include <String.h>
17 class JSDSlider : public BSlider
19 public:
20 JSDSlider(const char* name, const char* label,
21 BMessage* msg, int32 min, int32 max);
23 virtual ~JSDSlider();
24 virtual const char* UpdateText() const;
26 private:
27 mutable BString fResult;
30 #endif