BTRFS: Implement BTree::Path and change _Find.
[haiku.git] / src / apps / resedit / ResourceRoster.h
blob01fe8c18a176368d39cd2b7ff2e642848586cc87
1 /*
2 * Copyright (c) 2005-2010, Haiku, Inc.
3 * Distributed under the terms of the MIT license.
5 * Author:
6 * DarkWyrm <darkwyrm@gmail.com>
7 */
8 #ifndef RESROSTER_H
9 #define RESROSTER_H
11 #include <List.h>
12 #include "ColumnTypes.h"
13 #include "ColumnListView.h"
15 class Editor;
16 class ResourceData;
18 class ResourceRoster
20 public:
21 ResourceRoster(void);
22 ~ResourceRoster(void);
23 BField * MakeFieldForType(const int32 &type, const char *data,
24 const size_t &length);
25 void SpawnEditor(ResourceData *data, BHandler *handler);
27 private:
28 void LoadEditors(void);
30 BList fList;
33 typedef Editor* create_editor(void);
35 #endif