Gaudi Framework, version v21r11

Home   Generated: 30 Sep 2010

GaudiTest::BlockSkipper Class Reference

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

List of all members.

Public Member Functions

def __init__
def __processLine__

Public Attributes

 start
 end

Private Attributes

 _skipping


Detailed Description

Definition at line 372 of file GaudiTest.py.


Member Function Documentation

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

Definition at line 373 of file GaudiTest.py.

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

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

Reimplemented from GaudiTest::FilePreprocessor.

Definition at line 378 of file GaudiTest.py.

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


Member Data Documentation

Definition at line 374 of file GaudiTest.py.

Definition at line 375 of file GaudiTest.py.

Definition at line 376 of file GaudiTest.py.


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

Generated at Thu Sep 30 09:59:01 2010 for Gaudi Framework, version v21r11 by Doxygen version 1.5.6 written by Dimitri van Heesch, © 1997-2004