00001
00002
00003
00004
00005 #if !defined(AFX_VMSFILE_H__F67975E4_9034_4164_9F72_9A601E6872E5__INCLUDED_)
00006 #define AFX_VMSFILE_H__F67975E4_9034_4164_9F72_9A601E6872E5__INCLUDED_
00007
00008 #if _MSC_VER > 1000
00009 #pragma once
00010 #endif
00011
00012 #include <windows.h>
00013 #include <string>
00014
00015 class vmsFile
00016 {
00017 public:
00018 bool read (std::string& str);
00019 void close();
00020 bool open (LPCSTR pszName, LPCSTR pszMode = "r");
00021 vmsFile();
00022 virtual ~vmsFile();
00023
00024 protected:
00025 FILE* m_file;
00026 };
00027
00028 #endif