Gaudi Framework, version v21r7

Home   Generated: 22 Jan 2010

GaudiTest::BlockSkipper Class Reference

Inheritance diagram for GaudiTest::BlockSkipper:

Inheritance graph
[legend]
Collaboration diagram for GaudiTest::BlockSkipper:

Collaboration graph
[legend]

List of all members.

Public Member Functions

def __init__
def __processLine__

Public Attributes

 start
 end

Private Attributes

 _skipping


Detailed Description

Definition at line 371 of file GaudiTest.py.


Member Function Documentation

def GaudiTest::BlockSkipper::__init__ (   self,
  start,
  end 
)

Definition at line 372 of file GaudiTest.py.

00372                                   :
00373         self.start = start
00374         self.end = end
00375         self._skipping = False
00376         
    def __processLine__(self, line):

def GaudiTest::BlockSkipper::__processLine__ (   self,
  line 
)

Reimplemented from GaudiTest::FilePreprocessor.

Definition at line 377 of file GaudiTest.py.

00377                                    :
00378         if self.start in line:
00379             self._skipping = True
00380             return None
00381         elif self.end in line:
00382             self._skipping = False
00383         elif self._skipping:
00384             return None
00385         return line
00386 
class RegexpReplacer(FilePreprocessor):


Member Data Documentation

Definition at line 373 of file GaudiTest.py.

Definition at line 374 of file GaudiTest.py.

Definition at line 375 of file GaudiTest.py.


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

Generated at Fri Jan 22 20:44:59 2010 for Gaudi Framework, version v21r7 by Doxygen version 1.5.6 written by Dimitri van Heesch, © 1997-2004