summaryrefslogtreecommitdiff
path: root/src/IPC.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/IPC.h')
-rw-r--r--src/IPC.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/IPC.h b/src/IPC.h
index e0bbcee..09d176a 100644
--- a/src/IPC.h
+++ b/src/IPC.h
@@ -5,20 +5,22 @@
#include "commands.h"
#include "config.h"
+#include "ewmh.h"
#include "util.h"
class IPCServerModule
{
public:
- IPCServerModule(CommandsModule& commandsModule, Config& cfg, Globals& globals);
+ IPCServerModule(Globals& globals, Config& cfg, CommandsModule& commandsModule, EWMHModule& ewmh);
void init();
void doListen();
void quitIPC();
int getFD();
private:
- CommandsModule& commandsModule;
- Config& cfg;
Globals& globals;
+ Config& cfg;
+ CommandsModule& commandsModule;
+ EWMHModule& ewmh;
int sockfd;
int len;
bool first = true;