1/*
2 * Copyright 2007, Ingo Weinhold <bonefish@cs.tu-berlin.de>.
3 * All rights reserved. Distributed under the terms of the MIT License.
4 */
5#ifndef WIDGET_LAYOUT_TEST_MENU_TEST_H
6#define WIDGET_LAYOUT_TEST_MENU_TEST_H
7
8
9#include "Test.h"
10
11
12class BMenu;
13
14
15class MenuTest : public Test {
16public:
17								MenuTest();
18
19	static	Test*				CreateTest();
20
21private:
22			BMenu*				fMenu;
23};
24
25
26#endif	// WIDGET_LAYOUT_TEST_LIST_VIEW_TEST_H
27