2 * Copyright 2017 Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
10 #include "Repositories.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();
33 RepositoriesApplication myApp
;