/* * Copyright 2019, Haiku, Inc. * Distributed under the terms of the MIT License. * * Author: * Preetpal Kaur */ #ifndef INPUT_H #define INPUT_H #include #include #include #include "InputIcons.h" #include "InputWindow.h" class InputApplication : public BApplication { public: InputApplication(); void MessageReceived(BMessage* message); private: InputIcons fIcons; InputWindow* fWindow; }; #endif /* INPUT_H */