1 /* 2 * Copyright 2017, Andrew Lindesay <apl@lindesay.co.nz>. 3 * All rights reserved. Distributed under the terms of the MIT License. 4 */ 5 #include "AbstractServerProcess.h" 6 7 8 status_t 9 AbstractServerProcess::Run() 10 { 11 return B_OK; 12 } 13