Index: /trunk/FACT++/src/Service.h
===================================================================
--- /trunk/FACT++/src/Service.h	(revision 15040)
+++ /trunk/FACT++/src/Service.h	(revision 15040)
@@ -0,0 +1,17 @@
+#ifndef FACT_Service
+#define FACT_Service
+
+struct Service
+{
+    std::string name;
+    std::string server;
+    std::string service;
+    std::string format;
+    bool   iscmd;
+};
+
+inline bool operator<(const Service& left, const Service& right)
+{
+    return left.name < right.name;
+}
+#endif
