init: make 'Server' class usable by external components

Issue #2574
This commit is contained in:
Christian Prochaska 2017-11-13 16:25:37 +01:00 committed by Christian Helmuth
parent a110fef4d9
commit 41b3d3abc1
3 changed files with 6 additions and 6 deletions

View File

@ -16,7 +16,7 @@
#include <os/session_policy.h> #include <os/session_policy.h>
/* local includes */ /* local includes */
#include <server.h> #include "server.h"
/*************************** /***************************

View File

@ -18,10 +18,10 @@
#include <base/attached_rom_dataspace.h> #include <base/attached_rom_dataspace.h>
/* local includes */ /* local includes */
#include <types.h> #include "types.h"
#include <service.h> #include "service.h"
#include <buffered_xml.h> #include "buffered_xml.h"
#include <state_reporter.h> #include "state_reporter.h"
namespace Init { class Server; } namespace Init { class Server; }

View File

@ -19,7 +19,7 @@
#include <timer_session/connection.h> #include <timer_session/connection.h>
/* local includes */ /* local includes */
#include <report.h> #include "report.h"
namespace Init { class State_reporter; } namespace Init { class State_reporter; }