diff -r 594d59766373 -r 7d48bed6ce0c convergedcallengine/cce/src/cccecallparameters.cpp --- a/convergedcallengine/cce/src/cccecallparameters.cpp Thu Aug 19 10:28:14 2010 +0300 +++ b/convergedcallengine/cce/src/cccecallparameters.cpp Tue Aug 31 15:45:17 2010 +0300 @@ -65,6 +65,7 @@ cloned->SetLineType(iLineType); cloned->SetUUSId(iUUSId); cloned->SetOrigin(iOrigin); + cloned->SetAlphaId(iAlphaId); return cloned; } @@ -90,18 +91,18 @@ // ----------------------------------------------------------------------------- // void CCCECallParameters::SetLineType(CCCECallParameters::TCCELineType aLineType) - { - iLineType = aLineType; - } + { + iLineType = aLineType; + } // ----------------------------------------------------------------------------- // Gets the line type of the call. // ----------------------------------------------------------------------------- // CCCECallParameters::TCCELineType CCCECallParameters::LineType() const - { - return iLineType; - } + { + return iLineType; + } // ----------------------------------------------------------------------------- // Sets the service id identifying the service provider of the call. @@ -109,72 +110,81 @@ // void CCCECallParameters::SetUUSId(TBuf aUUSId) { - iUUSId = aUUSId; - } + iUUSId = aUUSId; + } // ----------------------------------------------------------------------------- // Gets the UUS id of the call. // ----------------------------------------------------------------------------- // TBuf CCCECallParameters::UUSId() const - { - return iUUSId; - } + { + return iUUSId; + } // ----------------------------------------------------------------------------- // Sets the bearer of the call. // ----------------------------------------------------------------------------- // void CCCECallParameters::SetBearer(TBuf8 aBearer) - { - iBearer = aBearer; - } + { + iBearer = aBearer; + } // ----------------------------------------------------------------------------- // Gets the bearer of the call. // ----------------------------------------------------------------------------- // TBuf8 CCCECallParameters::Bearer() const - { - return iBearer; - } + { + return iBearer; + } // ----------------------------------------------------------------------------- // Sets the sub address of the dialled phone number. // ----------------------------------------------------------------------------- // void CCCECallParameters::SetSubAddress(TBuf aSubAddress) - { - iSubAddress = aSubAddress; - } + { + iSubAddress = aSubAddress; + } // ----------------------------------------------------------------------------- // Gets the sub address of the dialled phone number. // ----------------------------------------------------------------------------- // TBuf CCCECallParameters::SubAddress() const - { - return iSubAddress; - } + { + return iSubAddress; + } // ----------------------------------------------------------------------------- // Sets the origin of the call. // ----------------------------------------------------------------------------- // void CCCECallParameters::SetOrigin(CCCECallParameters::TCCECallOrigin aCallOrigin) - { - iOrigin = aCallOrigin; - } + { + iOrigin = aCallOrigin; + } // ----------------------------------------------------------------------------- // Gets the origin of the call. // ----------------------------------------------------------------------------- // CCCECallParameters::TCCECallOrigin CCCECallParameters::Origin() const - { - return iOrigin; - } + { + return iOrigin; + } + +void CCCECallParameters::SetAlphaId(TBuf aAlphaId) + { + iAlphaId = aAlphaId; + } +TBuf CCCECallParameters::AlphaId() const + { + return iAlphaId; + } // End of file