1 /* 2 * Copyright 2017 Haiku Inc. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Brian Hill 7 */ 8 9 10 #include "Repositories.h" 11 12 #include <Catalog.h> 13 14 #include "constants.h" 15 16 #undef B_TRANSLATION_CONTEXT 17 #define B_TRANSLATION_CONTEXT "RepositoriesApplication" 18 19 const char* kAppSignature = "application/x-vnd.Haiku-Repositories"; 20 21 22 RepositoriesApplication::RepositoriesApplication() 23 : 24 BApplication(kAppSignature) 25 { 26 fWindow = new RepositoriesWindow(); 27 } 28 29 30 int 31 main() 32 { 33 RepositoriesApplication myApp; 34 myApp.Run(); 35 return 0; 36 } 37