xref: /haiku/headers/private/interface/DraggerPrivate.h (revision b55a57da7173b9af0432bd3e148d03f06161d036)
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
7 
8 
9 #include <Dragger.h>
10 
11 
12 class BDragger::Private {
13 	public:
14 		Private(BDragger* dragger) : fDragger(dragger) {}
15 
16 		static void UpdateShowAllDraggers(bool visible)
17 			{ BDragger::_UpdateShowAllDraggers(visible); }
18 
19 	private:
20 		BDragger*	fDragger;
21 };
22 
23 #endif	// _DRAGGER_PRIVATE_H
24