Package rosh :: Package impl :: Module namespace :: Class Namespace
[frames] | no frames]

Class Namespace

source code

object --+
         |
        Namespace
Known Subclasses:

Namespace provides lightweight accessors to a ROS namespace and its data. The behavior of the namespace object is determined by a NamespaceConfig instance.

Instance Methods
 
__init__(self, name, config)
ctor.
source code
 
__getattribute__(self, key)
x.__getattribute__('name') <==> x.name
source code
 
__iter__(self) source code
 
__getitem__(self, key)
Dictionary-style accessor
source code

Inherited from object: __delattr__, __format__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties

Inherited from object: __class__

Method Details

__init__(self, name, config)
(Constructor)

source code 

ctor.

Parameters:
Overrides: object.__init__

__getattribute__(self, key)

source code 

x.__getattribute__('name') <==> x.name

Overrides: object.__getattribute__
(inherited documentation)