pars 0.2.1
Loading...
Searching...
No Matches
client.cpp File Reference
#include "event.h"
Include dependency graph for client.cpp:

Go to the source code of this file.

Classes

class  pars_example::apps::client
 Runs the client component as an single application (req) More...
 

Namespaces

namespace  pars_example
 
namespace  pars_example::apps
 

Functions

int main (int argc, char **argv)
 

Function Documentation

◆ main()

int main ( int argc,
char ** argv )

Definition at line 239 of file client.cpp.

240{
242
243 try
244 {
245 return app.exec(argc, argv);
246 }
247 catch (std::exception& e)
248 {
249 std::cout << std::format("Error: {}", e.what()) << "\n";
250
251 return EXIT_FAILURE;
252 }
253}
Runs the client component as an single application (req)
Definition client.cpp:40