Home | Trees | Indices | Help |
|
---|
|
1 # Copyright 2004-2008 Roman Yakovenko. 2 # Distributed under the Boost Software License, Version 1.0. (See 3 # accompanying file LICENSE_1_0.txt or copy at 4 # http://www.boost.org/LICENSE_1_0.txt) 5 6 """ 7 defines class that will keep results of different calculations. 8 """12013 object.__init__( self ) 14 self._enabled = True 15 self._full_name = None 16 self._full_partial_name = None 17 self._access_type = None 18 self._demangled_name = None 19 self._declaration_path = None 20 self._partial_declaration_path = None 21 self._container_key_type = None 22 self._container_element_type = None23 26 29 30 @property 33 40 full_name = property( _get_full_name, _set_full_name ) 41 48 full_partial_name = property( _get_full_partial_name, _set_full_partial_name ) 49 56 access_type = property( _get_access_type, _set_access_type ) 57 64 demangled_name = property( _get_demangled_name, _set_demangled_name ) 65 72 declaration_path = property( _get_declaration_path, _set_declaration_path ) 7377 if not self.enabled: 78 partial_declaration_path = None 79 self._partial_declaration_path = partial_declaration_path80 partial_declaration_path = property( _get_partial_declaration_path 81 , _set_partial_declaration_path ) 82 89 container_element_type = property( _get_container_element_type, _set_container_element_type ) 90 97 container_key_type = property( _get_container_key_type, _set_container_key_type ) 98100 self.full_name = None 101 self.full_partial_name = None 102 self.access_type = None 103 self.demangled_name = None 104 self.declaration_path = None 105 self.partial_declaration_path = None 106 self.container_key_type = None 107 self.container_element_type = None108110 self.full_name = None 111 self.full_partial_name = None 112 self.demangled_name = None 113 self.declaration_path = None 114 self.partial_declaration_path = None 115 self.container_key_type = None 116 self.container_element_type = None117119 self.access_type = None122 enabled = True 123 124 @staticmethod 127 128 @staticmethod 131 135 142 143 remove_alias = property( _get_remove_alias, _set_remove_alias ) 144147146 self.remove_alias = None
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Oct 20 09:00:27 2008 | http://epydoc.sourceforge.net |