コード例 #1
0
 //===============================================
 public static GQt Instance()
 {
     lock (padlock) {
         if (m_instance == null)
         {
             m_instance = new GQt();
         }
         return(m_instance);
     }
 }
コード例 #2
0
 //===============================================
 public void runQt(string[] args)
 {
     GQt.Instance().run(args);
 }