Example #1
0
        public bool open(string filename)
        {
            m_parser = new iniParser();

            if (!m_parser.open(filename))
            {
                close();
                errorString = ERR_UNABLE_TO_LOAD_DATABASE;
                return(false);
            }

            return(true);
        }
Example #2
0
 public void close()
 {
     m_parser = null;
 }
Example #3
0
 public SidDatabase()
 {
     m_parser    = null;
     errorString = ERR_NO_DATABASE_LOADED;
 }