15 lines
285 B
C++
15 lines
285 B
C++
|
#include <cstdlib>
|
||
|
#include <nng/nng.h>
|
||
|
#include <nng/protocol/pubsub0/pub.h>
|
||
|
#include <nng/protocol/pubsub0/sub.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <unistd.h>
|
||
|
#include "dp_common.h"
|
||
|
#include "log.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
log_info("doomsim starting");
|
||
|
return 0;
|
||
|
|
||
|
}
|