1.1 --- a/epoc32/include/msvreg.inl Wed Mar 31 12:27:01 2010 +0100
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,94 +0,0 @@
1.4 -// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 -// All rights reserved.
1.6 -// This component and the accompanying materials are made available
1.7 -// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.8 -// which accompanies this distribution, and is available
1.9 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.10 -//
1.11 -// Initial Contributors:
1.12 -// Nokia Corporation - initial contribution.
1.13 -//
1.14 -// Contributors:
1.15 -//
1.16 -// Description:
1.17 -//
1.18 -
1.19 -
1.20 -
1.21 -inline TPtrC CMtmDllInfo::HumanReadableName() const
1.22 -/** Gets the descriptive name of the MTM component for which the object holds registration
1.23 -data.
1.24 -
1.25 -@return Descriptor holding the descriptive name of the MTM component */
1.26 - {
1.27 - return iHumanReadableName->Des();
1.28 - }
1.29 -
1.30 -inline TUid CMtmGroupData::MtmTypeUid() const
1.31 -/** Gets the group UID.
1.32 -
1.33 -@return UID that uniquely identifies the MTM group */
1.34 - {
1.35 - return iMtmTypeUid;
1.36 - }
1.37 -
1.38 -inline TUid CMtmGroupData::TechnologyTypeUid() const
1.39 -/** Gets the technology UID.
1.40 -
1.41 -Technology types can be used to conceptually group different MTMs (e.g. as
1.42 -providing Internet email).
1.43 -
1.44 -@return UID that indicates the messaging technology that the MTM group implements */
1.45 - {
1.46 - return iTechnologyTypeUid;
1.47 - }
1.48 -
1.49 -
1.50 -inline TUid CRegisteredMtmDll::MtmTypeUid() const
1.51 -/** Gets the MTM type UID.
1.52 -
1.53 -@return MTM type UID */
1.54 - {
1.55 - return iMtmTypeUid;
1.56 - }
1.57 -
1.58 -inline TUid CRegisteredMtmDll::TechnologyTypeUid() const
1.59 -/** Gets the technology type UID.
1.60 -
1.61 -@return UID that indicates the messaging technology that the MTM group implements */
1.62 - {
1.63 - return iTechnologyTypeUid;
1.64 - }
1.65 -
1.66 -inline const CMtmDllInfo& CRegisteredMtmDll::MtmDllInfo() const
1.67 -/** Gets the full registration data for the MTM.
1.68 -
1.69 -@return Object encapsulating full registration data for the MTM */
1.70 - {
1.71 - return *iMtmDllInfo;
1.72 - }
1.73 -
1.74 -inline TInt CRegisteredMtmDll::MtmDllRefCount() const
1.75 -/** Gets the number of MTM objects instantiated from the registry.
1.76 -
1.77 -@return Number of current instances of the MTM */
1.78 - {
1.79 - return iMtmDllRefCount;
1.80 - }
1.81 -
1.82 -inline TInt CMtmDllRegistry::NumRegisteredMtmDlls() const
1.83 -/** Gets the number of registered MTMs.
1.84 -
1.85 -@return Number of registered MTMs */
1.86 - {
1.87 - return iRegisteredMtmDllArray.Count();
1.88 - }
1.89 -
1.90 -inline TBool CMtmDllRegistry::IsPresent(TUid aMtmTypeUid) const
1.91 -/** Tests if the MTM with the specified UID is registered.
1.92 -
1.93 -@param aMtmTypeUid UID of MTM to check
1.94 -@return ETrue if the specified MTM in registered, else EFalse */
1.95 - {
1.96 - return MtmTypeUidToIndex(aMtmTypeUid)<iRegisteredMtmDllArray.Count();
1.97 - }