mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-06 16:56:45 +08:00
20 lines
297 B
C++
20 lines
297 B
C++
#include <iostream>
|
|
#include <string>
|
|
#include <thread>
|
|
#include <regex>
|
|
#include <atomic>
|
|
|
|
#include "libipc/ipc.h"
|
|
|
|
namespace {
|
|
|
|
constexpr char const name__[] = "ipc-msg-que";
|
|
constexpr char const quit__[] = "q";
|
|
constexpr char const id__ [] = "c";
|
|
|
|
} // namespace
|
|
|
|
int main() {
|
|
return 0;
|
|
}
|