reSIProcate/repro  9694
Public Member Functions | Public Attributes | Private Attributes
test::DummyWorkMessage Class Reference
Inheritance diagram for test::DummyWorkMessage:
Inheritance graph
[legend]
Collaboration diagram for test::DummyWorkMessage:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 DummyWorkMessage (resip::TransactionUser *passedTU, resip::Data string=resip::Data::Empty)
 DummyWorkMessage (const DummyWorkMessage &orig)
virtual ~DummyWorkMessage ()
resip::Dataresult ()
resip::Dataquery ()
virtual DummyWorkMessageclone () const
virtual const resip::DatagetTransactionId () const
virtual std::ostream & encode (std::ostream &ostr) const
virtual std::ostream & encodeBrief (std::ostream &ostr) const

Public Attributes

bool wait

Private Attributes

resip::Data mResult
resip::Data mQuery
resip::Data mTid

Detailed Description

Definition at line 19 of file testDispatcher.cxx.


Constructor & Destructor Documentation

test::DummyWorkMessage::DummyWorkMessage ( resip::TransactionUser passedTU,
resip::Data  string = resip::Data::Empty 
) [inline]

Definition at line 22 of file testDispatcher.cxx.

      {
         tu=passedTU;
         mTid="";
         mQuery=string;
         wait=false;
      }
test::DummyWorkMessage::DummyWorkMessage ( const DummyWorkMessage orig) [inline]

Definition at line 31 of file testDispatcher.cxx.

      {
         tu=orig.tu;
         mTid=orig.mTid;
         mQuery=orig.mQuery;
         mResult=orig.mResult;
         wait=orig.wait;
      }
virtual test::DummyWorkMessage::~DummyWorkMessage ( ) [inline, virtual]

Definition at line 40 of file testDispatcher.cxx.

{}

Member Function Documentation

virtual DummyWorkMessage* test::DummyWorkMessage::clone ( ) const [inline, virtual]

Implements resip::Message.

Definition at line 52 of file testDispatcher.cxx.

{return new DummyWorkMessage(*this);};
virtual std::ostream& test::DummyWorkMessage::encode ( std::ostream &  ostr) const [inline, virtual]

Definition at line 55 of file testDispatcher.cxx.

{ ostr << "DummyWorkMessage("<<mTid<<") "; return ostr; };
virtual std::ostream& test::DummyWorkMessage::encodeBrief ( std::ostream &  ostr) const [inline, virtual]

Definition at line 56 of file testDispatcher.cxx.

{ ostr << "DummyWorkMessage("<<mTid<<") "; return ostr; };
virtual const resip::Data& test::DummyWorkMessage::getTransactionId ( ) const [inline, virtual]

Reimplemented from resip::ApplicationMessage.

Definition at line 53 of file testDispatcher.cxx.

{return mTid;};
resip::Data& test::DummyWorkMessage::query ( ) [inline]

Definition at line 47 of file testDispatcher.cxx.

      {
         return mQuery;
      }
resip::Data& test::DummyWorkMessage::result ( ) [inline]

Definition at line 42 of file testDispatcher.cxx.

      {
         return mResult;
      }

Member Data Documentation

Definition at line 62 of file testDispatcher.cxx.

Definition at line 61 of file testDispatcher.cxx.

Definition at line 63 of file testDispatcher.cxx.

Definition at line 56 of file testDispatcher.cxx.


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