xref: /haiku/src/apps/haikudepot/server/AbstractServerProcess.cpp (revision 4d8811742fa447ec05b4993a16a0931bc29aafab)
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