-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
28 lines (24 loc) · 1.09 KB
/
main.cpp
File metadata and controls
28 lines (24 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//******************************************************************************#
// ____ __ _____ __ _ __ #
// / __ \__ __/ /_ / ___/__ __/ /_ | |/ / #
// / /_/ / / / / __ \\__ \/ / / / __ \| / #
// / ____/ /_/ / /_/ /__/ / /_/ / /_/ / | #
// /_/ \__,_/_.___/____/\__,_/_.___/_/|_| #
// #
//******************************************************************************#
// File : main.cpp
// Product : PubSubx
// Brief : Client implementation of publish subscribe protocol in PubSubX
// Ingroup : PubSubx
// Version : 0.1
// Updated : February 15 2022
//
// Copyright(C) Goran Josipovic.All rights reserved.
//******************************************************************************/
#include "Client.hpp"
int main(int argc, char* argv[])
{
Client client("localhost");
client.command_loop();
return 0;
}