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_LIST_VIEW_TEST_H
6#define WIDGET_LAYOUT_TEST_LIST_VIEW_TEST_H
7
8
9#include "Test.h"
10
11
12class BListView;
13
14
15class ListViewTest : public Test {
16public:
17								ListViewTest();
18
19	static	Test*				CreateTest();
20
21private:
22			BListView*			fListView;
23};
24
25
26#endif	// WIDGET_LAYOUT_TEST_LIST_VIEW_TEST_H
27