1 /* 2 * Copyright (c) 2005-2010, Haiku, Inc. 3 * Distributed under the terms of the MIT license. 4 * 5 * Author: 6 * DarkWyrm <darkwyrm@gmail.com> 7 */ 8 #ifndef RESLISTVIEW_H 9 #define RESLISTVIEW_H 10 11 #include "ColumnListView.h" 12 13 class ResListView : public BColumnListView 14 { 15 public: 16 ResListView(const BRect &frame, const char *name, int32 resize, int32 flags, 17 border_style border); 18 void MessageDropped(BMessage *msg, BPoint pt); 19 }; 20 21 #endif 22