mirror of
https://github.com/voiceip/tinyphone
synced 2026-08-07 02:26:03 -04:00
11 lines
193 B
C++
11 lines
193 B
C++
#pragma once
|
|
#include "afx.h"
|
|
#include "StdioFileEx.h"
|
|
|
|
class CCSVFile : public CStdioFileEx
|
|
{
|
|
public:
|
|
CCSVFile();
|
|
bool ReadData(CStringArray &arr);
|
|
void WriteData(CStringArray &arr);
|
|
};
|