• CFile(); - 通常のコンストラクタ
    • CFile(const char* szFilePath); - ファイルパスを引数に持つコンストラクタ
    • CFile(const std::string &s); - ファイルパス(std::string型)を引数に持つコンストラクタ
    • CFile(const CFile &file); - コピーコンストラクタ
    • CFile(const CFile &parent, const char* szChild); - parentに対する子供の CFile を作成する。