source:
trunk/FACT++/src/Service.h@
18350
Last change on this file since 18350 was 15040, checked in by , 12 years ago | |
---|---|
File size: 288 bytes |
Line | |
---|---|
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 |
Note:
See TracBrowser
for help on using the repository browser.