messagingfw/deprecate/senduiservices/src/CSendingServiceInfo.cpp
branchRCL_3
changeset 23 d51193d814ea
parent 22 d2c4c66342f3
child 24 002ade1da91c
equal deleted inserted replaced
22:d2c4c66342f3 23:d51193d814ea
     1 /*
       
     2 * Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:   Encapsulates the ECom plugged sending service data.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 // INCLUDE FILES
       
    22 #include <CSendingServiceInfo.h>
       
    23 #include "SendingServiceInfoImpl.h"
       
    24 
       
    25 
       
    26 // ============================ MEMBER FUNCTIONS ===============================
       
    27 
       
    28 // -----------------------------------------------------------------------------
       
    29 // CSendingServiceInfo::CSendingServiceInfo
       
    30 // C++ default constructor can NOT contain any code, that
       
    31 // might leave.
       
    32 // -----------------------------------------------------------------------------
       
    33 //
       
    34 CSendingServiceInfo::CSendingServiceInfo()
       
    35     {
       
    36     }
       
    37 
       
    38 // -----------------------------------------------------------------------------
       
    39 // CSendingServiceInfo::ConstructL
       
    40 // Symbian 2nd phase constructor can leave.
       
    41 // -----------------------------------------------------------------------------
       
    42 //
       
    43 void CSendingServiceInfo::ConstructL()
       
    44     {
       
    45      }
       
    46 
       
    47 // -----------------------------------------------------------------------------
       
    48 // CSendingServiceInfo::NewL
       
    49 // Two-phased constructor.
       
    50 // -----------------------------------------------------------------------------
       
    51 //
       
    52 EXPORT_C CSendingServiceInfo* CSendingServiceInfo::NewL()
       
    53     {
       
    54     }
       
    55 
       
    56 // ---------------------------------------------------------
       
    57 // CSendingServiceInfo::NewLC
       
    58 // Two-phased constructor.
       
    59 // ---------------------------------------------------------
       
    60 //
       
    61 EXPORT_C CSendingServiceInfo* CSendingServiceInfo::NewLC()
       
    62     {
       
    63     }
       
    64 
       
    65 
       
    66 // Destructor
       
    67 EXPORT_C CSendingServiceInfo::~CSendingServiceInfo()
       
    68     {
       
    69     }
       
    70 
       
    71 // -----------------------------------------------------------------------------
       
    72 // CSendingServiceInfo::CopyLC
       
    73 // Creates a copy of CSendingServiceInfo object.
       
    74 // (other items were commented in a header).
       
    75 // -----------------------------------------------------------------------------
       
    76 //
       
    77 EXPORT_C CSendingServiceInfo* CSendingServiceInfo::CopyLC() const
       
    78     {
       
    79     }
       
    80 
       
    81 // -----------------------------------------------------------------------------
       
    82 // CSendingServiceInfo::SetServiceNameL
       
    83 // Sets service human readable name.
       
    84 // (other items were commented in a header).
       
    85 // -----------------------------------------------------------------------------
       
    86 //
       
    87 EXPORT_C void CSendingServiceInfo::SetServiceNameL( const TDesC& aServiceName )
       
    88     {
       
    89     }
       
    90 
       
    91 // -----------------------------------------------------------------------------
       
    92 // CSendingServiceInfo::ServiceName
       
    93 // Returns service human readable name.
       
    94 // (other items were commented in a header).
       
    95 // -----------------------------------------------------------------------------
       
    96 //
       
    97 EXPORT_C const TPtrC CSendingServiceInfo::ServiceName() const
       
    98     {
       
    99     }
       
   100 
       
   101 // -----------------------------------------------------------------------------
       
   102 // CSendingServiceInfo::SetServiceMenuNameL
       
   103 // Sets service human readable name for the "Send"-menu.
       
   104 // (other items were commented in a header).
       
   105 // -----------------------------------------------------------------------------
       
   106 //
       
   107 EXPORT_C void CSendingServiceInfo::SetServiceMenuNameL(
       
   108     const TDesC& aServiceMenuName )
       
   109     {
       
   110     }
       
   111 
       
   112 // -----------------------------------------------------------------------------
       
   113 // CSendingServiceInfo::ServiceMenuName
       
   114 // Returns service human readable name for the "Send"-menu.
       
   115 // (other items were commented in a header).
       
   116 // -----------------------------------------------------------------------------
       
   117 //
       
   118 EXPORT_C const TPtrC CSendingServiceInfo::ServiceMenuName() const
       
   119     {
       
   120     }
       
   121 
       
   122 // -----------------------------------------------------------------------------
       
   123 // CSendingServiceInfo::SetServiceAddressL
       
   124 // Sets service address.
       
   125 // (other items were commented in a header).
       
   126 // -----------------------------------------------------------------------------
       
   127 //
       
   128 EXPORT_C void CSendingServiceInfo::SetServiceAddressL(
       
   129     const TDesC& aServiceAddress )
       
   130     {
       
   131     }
       
   132 
       
   133 // -----------------------------------------------------------------------------
       
   134 // CSendingServiceInfo::ServiceAddress
       
   135 // Returns service address.
       
   136 // (other items were commented in a header).
       
   137 // -----------------------------------------------------------------------------
       
   138 //
       
   139 EXPORT_C const TPtrC CSendingServiceInfo::ServiceAddress() const
       
   140     {
       
   141     }
       
   142 
       
   143 // -----------------------------------------------------------------------------
       
   144 // CSendingServiceInfo::SetServiceId
       
   145 // Sets service id.
       
   146 // (other items were commented in a header).
       
   147 // -----------------------------------------------------------------------------
       
   148 //
       
   149 EXPORT_C void CSendingServiceInfo::SetServiceId( TUid aServiceId )
       
   150     {
       
   151     }
       
   152 
       
   153 // -----------------------------------------------------------------------------
       
   154 // CSendingServiceInfo::ServiceId
       
   155 // Returns service id.
       
   156 // (other items were commented in a header).
       
   157 // -----------------------------------------------------------------------------
       
   158 //
       
   159 EXPORT_C TUid CSendingServiceInfo::ServiceId() const
       
   160     {
       
   161     }
       
   162 
       
   163 
       
   164 // -----------------------------------------------------------------------------
       
   165 // CSendingServiceInfo::ServiceId
       
   166 // Returns service id.
       
   167 // (other items were commented in a header).
       
   168 // -----------------------------------------------------------------------------
       
   169 //
       
   170 EXPORT_C void CSendingServiceInfo::SetTechnologyTypeId( TUid aTechnologyType )
       
   171     {
       
   172     }
       
   173 
       
   174 // -----------------------------------------------------------------------------
       
   175 // CSendingServiceInfo::ServiceId
       
   176 // Returns service id.
       
   177 // (other items were commented in a header).
       
   178 // -----------------------------------------------------------------------------
       
   179 //
       
   180 EXPORT_C TUid CSendingServiceInfo::TechnologyTypeId() const
       
   181     {
       
   182     }
       
   183 
       
   184 
       
   185 // -----------------------------------------------------------------------------
       
   186 // CSendingServiceInfo::SetServiceProviderId
       
   187 // Sets service provider id.
       
   188 // (other items were commented in a header).
       
   189 // -----------------------------------------------------------------------------
       
   190 //
       
   191 EXPORT_C void CSendingServiceInfo::SetServiceProviderId( TUid aServiceProviderId )
       
   192     {
       
   193     }
       
   194 
       
   195 // -----------------------------------------------------------------------------
       
   196 // CSendingServiceInfo::ServiceProviderId
       
   197 // Returns service provider id.
       
   198 // (other items were commented in a header).
       
   199 // -----------------------------------------------------------------------------
       
   200 //
       
   201 EXPORT_C TUid CSendingServiceInfo::ServiceProviderId() const
       
   202     {
       
   203     }
       
   204 
       
   205 // -----------------------------------------------------------------------------
       
   206 // CSendingServiceInfo::SetServiceCapabilities
       
   207 // Set service sending capabilities.
       
   208 // (other items were commented in a header).
       
   209 // -----------------------------------------------------------------------------
       
   210 //
       
   211 EXPORT_C void CSendingServiceInfo::SetServiceCapabilities(
       
   212     TSendingCapabilities aServiceCapabilities )
       
   213     {
       
   214     }
       
   215 
       
   216 // -----------------------------------------------------------------------------
       
   217 // CSendingServiceInfo::ServiceCapabilities
       
   218 // Returns service sending capabilities.
       
   219 // (other items were commented in a header).
       
   220 // -----------------------------------------------------------------------------
       
   221 //
       
   222 EXPORT_C TSendingCapabilities CSendingServiceInfo::ServiceCapabilities() const
       
   223     {
       
   224     }
       
   225 
       
   226 // -----------------------------------------------------------------------------
       
   227 // CSendingServiceInfo::SetServiceCapabilities
       
   228 // Set service sending capabilities.
       
   229 // (other items were commented in a header).
       
   230 // -----------------------------------------------------------------------------
       
   231 //
       
   232 EXPORT_C void CSendingServiceInfo::SetServiceFeatures(
       
   233     TInt aServiceFeatures )
       
   234     {
       
   235     }
       
   236 
       
   237 // -----------------------------------------------------------------------------
       
   238 // CSendingServiceInfo::ServiceCapabilities
       
   239 // Returns service sending capabilities.
       
   240 // (other items were commented in a header).
       
   241 // -----------------------------------------------------------------------------
       
   242 //
       
   243 EXPORT_C TInt CSendingServiceInfo::ServiceFeatures() const
       
   244     {
       
   245     }
       
   246 //  End of File