xref: /haiku/src/apps/musiccollection/main.cpp (revision 1deede7388b04dbeec5af85cae7164735ea9e70d)
1 /*
2  * Copyright 2011, Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Clemens Zeidler <haiku@clemens-zeidler.de>
7  */
8 
9 
10 #include <Application.h>
11 #include <Catalog.h>
12 
13 #include "MusicCollectionWindow.h"
14 
15 
16 const char* kAppSignature = "application/x-vnd.MusicCollection";
17 
18 
19 int
20 main(int argc, char* argv[])
21 {
22 	BApplication app(kAppSignature);
23 
24 	BWindow* window = new MusicCollectionWindow(BRect(100, 100, 350, 500),
25 		B_TRANSLATE_SYSTEM_NAME("Music Collection"));
26 	window->Show();
27 
28 	app.Run();
29 
30 	return 0;
31 }
32