文檔首頁(yè)>>VMPsoft中文文檔>>文件
文件
一個(gè)用于處理文件列表的類:
class Files { public: File item(int index); // returns a file with the given index int count(); // returns the number of files in the list }
一個(gè)用于處理文件的類:
class File { public: string name(); // returns the name of the file string fileName(); // returns the filename int options(); // returns options void setName(string name); // sets the name of the file void setFileName(string name); // sets the filename of the file void setOptions(); // sets options }