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 #ifndef REPOSITORIES_H 9 #define REPOSITORIES_H 10 11 12 #include <Application.h> 13 14 #include "RepositoriesWindow.h" 15 16 17 class RepositoriesApplication : public BApplication { 18 public: 19 RepositoriesApplication(); 20 21 private: 22 RepositoriesWindow* fWindow; 23 }; 24 25 26 #endif 27