Public Member Functions | Static Public Attributes | Private Attributes | List of all members
pyexample.PyClass Class Reference

Documentation for a class. More...

Public Member Functions

def __init__ (self)
 The constructor. More...
 
def PyMethod (self)
 Documentation for a method. More...
 

Static Public Attributes

int classVar = 0
 A class variable. More...
 

Private Attributes

 _memVar
 a member variable More...
 

Detailed Description

Documentation for a class.

More details.

Definition at line 15 of file pyexample.py.

Constructor & Destructor Documentation

def pyexample.PyClass.__init__ (   self)

The constructor.

Definition at line 18 of file pyexample.py.

18  def __init__(self):
19  self._memVar = 0;
20 
_memVar
a member variable
Definition: pyexample.py:19
def __init__(self)
The constructor.
Definition: pyexample.py:18

Member Function Documentation

def pyexample.PyClass.PyMethod (   self)

Documentation for a method.

Parameters
selfThe object pointer.

Definition at line 23 of file pyexample.py.

23  def PyMethod(self):
24  pass
25 
def PyMethod(self)
Documentation for a method.
Definition: pyexample.py:23

Member Data Documentation

pyexample.PyClass._memVar
private

a member variable

Definition at line 19 of file pyexample.py.

int pyexample.PyClass.classVar = 0
static

A class variable.

Definition at line 27 of file pyexample.py.


The documentation for this class was generated from the following file: