My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
TipperFileClient.h
Go to the documentation of this file.
1 // $Id: TipperFileClient.h,v 1.1.1.1 2009/07/06 23:57:27 eml Exp $
2 
3 #ifndef GCP_UTIL_TIPPERFILECLIENT_H
4 #define GCP_UTIL_TIPPERFILECLIENT_H
5 
16 #include <iostream>
17 #include <fstream>
18 
19 #include "gcp/util/common/TipperSshClient.h"
20 
21 namespace gcp {
22  namespace util {
23 
25  public:
26 
30  TipperFileClient(std::string fileName);
31 
35  virtual ~TipperFileClient();
36 
37  // Process data received from the server
38 
39  void processServerData();
40 
41  private:
42 
43  std::ofstream of_;
44 
45  }; // End class TipperFileClient
46 
47  } // End namespace util
48 } // End namespace gcp
49 
50 
51 
52 #endif // End #ifndef GCP_UTIL_TIPPERFILECLIENT_H
void processServerData()
Definition: TipperFileClient.cc:44
Definition: TipperSshClient.h:24
virtual ~TipperFileClient()
Definition: TipperFileClient.cc:34
TipperFileClient(std::string fileName)
Definition: TipperFileClient.cc:12
Definition: TipperFileClient.h:24