xref: /haiku/headers/private/interface/TabViewPrivate.h (revision d0ac609964842f8cdb6d54b3c539c6c15293e172)
1 /*
2  * Copyright 2015, Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Augustin Cavalier <waddlesplash>
7  */
8 #ifndef TABVIEW_PRIVATE_H
9 #define TABVIEW_PRIVATE_H
10 
11 
12 #include <TabView.h>
13 
14 
15 class BTab::Private {
16 public:
17 								Private(BTab* tab)
18 									:
19 									fTab(tab)
20 								{
21 								}
22 
23 			void				SetTabView(BTabView* tabView)
24 									{ fTab->fTabView = tabView; }
25 
26 private:
27 			BTab* fTab;
28 };
29 
30 
31 #endif	/* TABVIEW_PRIVATE_H */
32