Index: branches/FEPSimulator/FEPSim.h
===================================================================
--- branches/FEPSimulator/FEPSim.h	(revision 82)
+++ branches/FEPSimulator/FEPSim.h	(revision 84)
@@ -40,23 +40,24 @@
 const int BUFF_SIZE = 1000000;
 
-class FEPSim
-{
-	public:
-        /* members */
-		CLIENT *clnt; // RPC Client
+class FEPSim {
+public:
+    /* members */
+    CLIENT *clnt; // RPC Client
 
-        /* methods */
-		FEPSim(char * host, char * networkFile); // Constructor
-		~FEPSim(); // Destructor
+    /* methods */
+    FEPSim(char * ATMSHost); // Constructor
+    
+    void updateATMS(char * xml); // updates ATMS
 
-	private:
-        /* members */
-        NetworkReader *networkReader;
-        char * ATMSHost;
-        
-        /* methods */
-        void handleCallResponse(void *response); //
-        void createClient(char *host);
-        void updateATMS(); // updates ATMS
+    ~FEPSim(); // Destructor
+
+private:
+    /* members */
+    char * ATMSHost;
+
+    /* methods */
+    void handleCallResponse(void *response); //
+    bool createClient(char *host);
+    void sendReplys(char * xml);
 
 };
