BTRFS: Implement BTree::Path and change _Find.
[haiku.git] / src / apps / musiccollection / main.cpp
blobc85fb84ce160dab02d8ff11969f95374953b61a8
1 /*
2 * Copyright 2011, Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Clemens Zeidler <haiku@clemens-zeidler.de>
7 */
10 #include <Application.h>
11 #include <Catalog.h>
13 #include "MusicCollectionWindow.h"
16 const char* kAppSignature = "application/x-vnd.MusicCollection";
19 int
20 main(int argc, char* argv[])
22 BApplication app(kAppSignature);
24 BWindow* window = new MusicCollectionWindow(BRect(100, 100, 350, 500),
25 B_TRANSLATE_SYSTEM_NAME("Music Collection"));
26 window->Show();
28 app.Run();
30 return 0;