文档彩票走势图>>VMPsoft中文文档>>文件
文件
一个用于处理文件列表的类:
class Files { public: File item(int index); // returns a file with the given index int count(); // returns the number of files in the list }
一个用于处理文件的类:
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 }