reSIProcate/stack  9694
Public Member Functions | Private Attributes
OrderUnknownParameters Class Reference

used as a comparator for sorting purposes More...

List of all members.

Public Member Functions

 OrderUnknownParameters ()
 constructor ; never called explicitly
 ~OrderUnknownParameters ()
 empty destructor
bool operator() (const Parameter *p1, const Parameter *p2) const
 used as a comparator for sorting purposes This does a straight Data comparison for name and returns true/false

Private Attributes

bool notUsed

Detailed Description

used as a comparator for sorting purposes

Definition at line 335 of file Uri.cxx.


Constructor & Destructor Documentation

OrderUnknownParameters::OrderUnknownParameters ( ) [inline]

constructor ; never called explicitly

Definition at line 341 of file Uri.cxx.

{ notUsed=false; };
OrderUnknownParameters::~OrderUnknownParameters ( ) [inline]

empty destructor

Definition at line 346 of file Uri.cxx.

{};

Member Function Documentation

bool OrderUnknownParameters::operator() ( const Parameter p1,
const Parameter p2 
) const [inline]

used as a comparator for sorting purposes This does a straight Data comparison for name and returns true/false

Parameters:
p1pointer to parameter 1
p2pointer to parameter 2
Returns:
true if p1->getName() is less than p2->getName() else return false

Definition at line 356 of file Uri.cxx.

      {
         return dynamic_cast<const UnknownParameter*>(p1)->getName() < dynamic_cast<const UnknownParameter*>(p2)->getName();
      }

Member Data Documentation

Definition at line 362 of file Uri.cxx.


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