_CPKIFPeriodImpl.cpp
Go to the documentation of this file.00001
00009 #include "PKIFTime.h"
00010 #include "Period.h"
00011
00012
00020 _CPKIFPeriodImpl::_CPKIFPeriodImpl() : m_start(new CPKIFTime), m_end(new CPKIFTime)
00021 {
00022 }
00023
00024
00032 _CPKIFPeriodImpl::_CPKIFPeriodImpl( const _CPKIFPeriodImpl& another_ )
00033 : m_start(another_.m_start),
00034 m_end(another_.m_end)
00035 {
00036 }
00037
00038
00047 _CPKIFPeriodImpl& _CPKIFPeriodImpl::operator=(const struct _CPKIFPeriodImpl& another_)
00048 {
00049 if( this != &another_ )
00050 {
00051 m_start = another_.m_start;
00052 m_end = another_.m_end;
00053 }
00054 return *this;
00055 }
00056