RemoteDrawingEngine: Reduce RP_READ_BITMAP result timeout.
[haiku.git] / src / preferences / repositories / Repositories.cpp
blobbe82e815432525333bb20aa4e60837973340f9f1
1 /*
2 * Copyright 2017 Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Brian Hill
7 */
10 #include "Repositories.h"
12 #include <Catalog.h>
14 #include "constants.h"
16 #undef B_TRANSLATION_CONTEXT
17 #define B_TRANSLATION_CONTEXT "RepositoriesApplication"
19 const char* kAppSignature = "application/x-vnd.Haiku-Repositories";
22 RepositoriesApplication::RepositoriesApplication()
24 BApplication(kAppSignature)
26 fWindow = new RepositoriesWindow();
30 int
31 main()
33 RepositoriesApplication myApp;
34 myApp.Run();
35 return 0;