SSPC-Tester/Driver/UDP5080-100/UNI-T SDK/examples/UCI/VC/UCIDemoProj/File.h

12 lines
312 B
C
Raw Normal View History

#ifndef File_h__
#define File_h__
class Files {
public:
static bool ReadFile(const CString& _fileName, CString& _content);
static void WriteFile(const CString& _fileName, CString& _content);
static bool WriteAllBytes(const CString& _name, const void* _b, size_t _len, CString* _path);
};
#endif // File_h__