reSIProcate/stack  9694
Public Member Functions | Public Attributes
resip::SdpContents::Session::Timezones::Adjustment Class Reference

specify the time at which a timezone shift will occur and the offset, in seconds More...

#include <SdpContents.hxx>

List of all members.

Public Member Functions

 Adjustment (unsigned long time, int offset)
 Adjustment (const Adjustment &rhs)
Adjustmentoperator= (const Adjustment &rhs)

Public Attributes

unsigned long time
int offset

Detailed Description

specify the time at which a timezone shift will occur and the offset, in seconds

Deprecated:
Unused

Definition at line 519 of file SdpContents.hxx.


Constructor & Destructor Documentation

SdpContents::Session::Timezones::Adjustment::Adjustment ( unsigned long  time,
int  offset 
)

Definition at line 766 of file SdpContents.cxx.

   : time(_time),
     offset(_offset)
{}
SdpContents::Session::Timezones::Adjustment::Adjustment ( const Adjustment rhs)

Definition at line 772 of file SdpContents.cxx.

   : time(rhs.time),
     offset(rhs.offset)
{}

Member Function Documentation

SdpContents::Session::Timezones::Adjustment & SdpContents::Session::Timezones::Adjustment::operator= ( const Adjustment rhs)

Definition at line 778 of file SdpContents.cxx.

References offset, and time.

{
   if (this != &rhs)
   {
      time = rhs.time;
      offset = rhs.offset;
   }
   return *this;
}

Member Data Documentation

Definition at line 528 of file SdpContents.hxx.

Referenced by operator=(), and resip::SdpContents::Session::Timezones::parse().

Definition at line 527 of file SdpContents.hxx.

Referenced by operator=(), and resip::SdpContents::Session::Timezones::parse().


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