1 /* 2 * Copyright 2017, Andrew Lindesay <apl@lindesay.co.nz>. 3 * All rights reserved. Distributed under the terms of the MIT License. 4 */ 5 6 #ifndef ABSTRACT_SERVER_PROCESS_H 7 #define ABSTRACT_SERVER_PROCESS_H 8 9 #include <String.h> 10 11 class AbstractServerProcess { 12 public: 13 status_t Run(); 14 }; 15 16 #endif // ABSTRACT_SERVER_PROCESS_H 17