Go to the documentation of this file.00001
00002
00003
00004 #ifndef CUBITFILE_HPP
00005 #define CUBITFILE_HPP
00006
00007 #include <stdio.h>
00008 #include "CubitString.hpp"
00009 #include "CGMUtilConfigure.h"
00010
00011
00012
00013
00014 class CUBIT_UTIL_EXPORT CubitFile
00015 {
00016 public:
00017
00018 CubitFile();
00019
00020
00021 CubitFile(const CubitString& file, const char* mode);
00022
00023
00024 virtual ~CubitFile();
00025
00026
00027 bool open(const CubitString& file, const char* mode);
00028
00029
00030 void close();
00031
00032
00033
00034 FILE* file() const;
00035
00036
00037 operator bool () const;
00038
00039
00040
00041 int error();
00042
00043 protected:
00044 FILE* mFile;
00045 int mError;
00046 };
00047
00048
00049 #endif
00050