My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
WxReaderSA.h
Go to the documentation of this file.
1 // $Id: WxReaderSA.h,v 1.2 2009/11/12 23:11:37 sjcm Exp $
2 
3 #ifndef GCP_UTIL_WXREADERSA_H
4 #define GCP_UTIL_WXREADERSA_H
5 
15 #include "gcp/util/common/CurlUtils.h"
16 #include "gcp/util/common/WxDataSA.h"
17 #include <fstream>
18 #include <string.h>
19 #include <cerrno>
20 #include <iostream>
21 
22 namespace gcp {
23  namespace util {
24 
25  class WxReaderSA : public CurlUtils {
26  public:
27 
31  WxReaderSA();
32 
36  virtual ~WxReaderSA();
37 
38  void getData();
39 
40  std::string getFileContents(const char *filename);
41 
42  WxDataSA data_;
43 
44  const char* defaultFilename_;
45 
46  }; // End class WxReaderSA
47 
48  } // End namespace util
49 } // End namespace gcp
50 
51 
52 
53 #endif // End #ifndef GCP_UTIL_WXREADERSA_H
Definition: WxReaderSA.h:25
virtual ~WxReaderSA()
Definition: WxReaderSA.cc:23
WxReaderSA()
Definition: WxReaderSA.cc:16
Definition: CurlUtils.h:21
Definition: WxDataSA.h:16