Doesn't do anything yet. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30255 a95241bf-73f2-0310-859d-f6bbb57e9c96
26 lines
363 B
C++
26 lines
363 B
C++
/*
|
|
* Copyright 2009, Ingo Weinhold, [email protected].
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef MAIN_WINDOW_H
|
|
#define MAIN_WINDOW_H
|
|
|
|
#include <Window.h>
|
|
|
|
|
|
class BTabView;
|
|
|
|
|
|
class MainWindow : public BWindow {
|
|
public:
|
|
MainWindow();
|
|
virtual ~MainWindow();
|
|
|
|
private:
|
|
BTabView* fMainTabView;
|
|
};
|
|
|
|
|
|
|
|
#endif // MAIN_WINDOW_H
|