RtcLink.py
Go to the documentation of this file.
00001 #!/usr/bin/env python
00002 # -*- coding: utf-8 -*-
00003 #
00004 #  @file RtcLink.py
00005 #  @brief rtc-link application launch script
00006 #  @date $Date: 2005-05-12 09:06:19 $
00007 #  @author Noriaki Ando <n-ando@aist.go.jp>
00008 # 
00009 #  Copyright (C) 2003-2005
00010 #      Task-intelligence Research Group,
00011 #      Intelligent Systems Research Institute,
00012 #      National Institute of
00013 #          Advanced Industrial Science and Technology (AIST), Japan
00014 #      All rights reserved.
00015 # 
00016 #  $Id: RtcLink.py 775 2008-07-28 16:14:45Z n-ando $
00017 # 
00018 
00019 from wxPython.wx import *
00020 import RtmFrame
00021 import rtimages
00022 import wx
00023 
00024 
00025 class MyApp(wx.App):
00026         def OnInit(self):
00027                 wx.InitAllImageHandlers()
00028                 frame = RtmFrame.RtdFrame(NULL, -1, "RTCLink")
00029                 frame.Show(true)
00030                 self.SetTopWindow(frame)
00031                 return true
00032 
00033 
00034 app = MyApp(0)
00035 app.MainLoop()
00036 
00037 


openrtm_aist
Author(s): Noriaki Ando
autogenerated on Sat Jun 8 2019 18:49:06