vfs: check userland buffers before reading them.
[haiku.git] / headers / private / interface / DraggerPrivate.h
blob357efe53f42e976881c32ea2f3fdb7f6d3e06fbb
1 /*
2 * Copyright 2007, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 */
5 #ifndef _DRAGGER_PRIVATE_H
6 #define _DRAGGER_PRIVATE_H
9 #include <Dragger.h>
12 class BDragger::Private {
13 public:
14 Private(BDragger* dragger) : fDragger(dragger) {}
16 static void UpdateShowAllDraggers(bool visible)
17 { BDragger::_UpdateShowAllDraggers(visible); }
19 private:
20 BDragger* fDragger;
23 #endif // _DRAGGER_PRIVATE_H