FACT++  1.0
Service.h
Go to the documentation of this file.
1 #ifndef FACT_Service
2 #define FACT_Service
3 
4 struct Service
5 {
6  std::string name;
7  std::string server;
8  std::string service;
9  std::string format;
10  bool iscmd;
11 };
12 
13 inline bool operator<(const Service& left, const Service& right)
14 {
15  return left.name < right.name;
16 }
17 #endif
bool iscmd
Definition: Service.h:10
std::string format
Definition: Service.h:9
std::string server
Definition: Service.h:7
std::string service
Definition: Service.h:8
bool operator<(const Service &left, const Service &right)
Definition: Service.h:13
std::string name
Definition: Service.h:6