mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 23:10:04 +00:00
13 lines
174 B
C++
13 lines
174 B
C++
|
#pragma once
|
||
|
|
||
|
#include "CNProtocol.hpp"
|
||
|
|
||
|
#include <list>
|
||
|
#include <mutex>
|
||
|
|
||
|
namespace Monitor {
|
||
|
void init();
|
||
|
void tick(CNServer *, time_t);
|
||
|
void start(void *);
|
||
|
};
|