1
2
3
4
5
6
7
8
9
10
11
12
  | # -*- coding: GBK -*-  
 |  # ¸÷ÏîÄ¿×Ô¼ºÊµÏֵĻúÆ÷È˵ÄÅäÖÃÐÅÏ¢¶ÁÈ¡  
 |  # author:   
 |  # Date: 2011.9.1  
 |  # history:  2011.9.1     Created  
 |    
 |  from ConfigurationReader.RobotConfigParam import RobotConfigParams  
 |    
 |    
 |  class ProjectRobotConfigParams( RobotConfigParams ):  
 |      def __init__(self, params):  
 |          RobotConfigParams.__init__( self, params ) 
 |  
  |