Make UEFI boot-platform build again
[haiku.git] / headers / private / interface / TabViewPrivate.h
blob8b6c9c47a07bc2a44c97c0e521ca699ef6743cb0
1 /*
2 * Copyright 2015, Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Augustin Cavalier <waddlesplash>
7 */
8 #ifndef TABVIEW_PRIVATE_H
9 #define TABVIEW_PRIVATE_H
12 #include <TabView.h>
15 class BTab::Private {
16 public:
17 Private(BTab* tab)
19 fTab(tab)
23 void SetTabView(BTabView* tabView)
24 { fTab->fTabView = tabView; }
26 private:
27 BTab* fTab;
31 #endif /* TABVIEW_PRIVATE_H */