blob: 491c1613adbd72f2308b769e290d7bae7148f71d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef COMMLAYERINNER_H_
#define COMMLAYERINNER_H_
#include "Observer.h"
void comm_layer_inner_init(CObserver *pObs);
void comm_layer_inner_debug(const std::string& pMessage);
void comm_layer_inner_warning(const std::string& pMessage);
void comm_layer_inner_status(const std::string& pMessage);
#endif /* COMMLAYERINNER_H_ */
|