10 lines
181 B
Plaintext
10 lines
181 B
Plaintext
#pragma once
|
|
#include <string>
|
|
|
|
class DnsMasqService {
|
|
public:
|
|
void Start(const std::string&confFile, const std::string&wlan);
|
|
void Stop();
|
|
private:
|
|
int64_t pid = -1;
|
|
}; |