14 lines
323 B
C++
14 lines
323 B
C++
|
#pragma once
|
||
|
|
||
|
namespace nall {
|
||
|
|
||
|
struct service {
|
||
|
explicit operator bool() const { return false; }
|
||
|
auto command(const string& name, const string& command) -> bool { return false; }
|
||
|
auto receive() -> string { return ""; }
|
||
|
auto name() const -> string { return ""; }
|
||
|
auto stop() const -> bool { return false; }
|
||
|
};
|
||
|
|
||
|
}
|