public bool loadConfig(out object obj)  //設定ファイル読み込み
        {
            configure conf   = new configure();
            bool      result = XmlFileIO.xmlLoad(conf.GetType(), getFilename(), out obj);

            logOutput.writeLog("設定ファイルを読み込みました。");


            return(result);
        }