cellular/psuinotes/tsrc/mocks/mock_xqsettingskey.cpp
branchRCL_3
changeset 20 987c9837762f
parent 19 7d48bed6ce0c
child 21 0a6dd2dc9970
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
     1 /* 
       
     2 * Copyright (c) 2009 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:
       
    15 *
       
    16 */
       
    17 #include <QDebug>
       
    18 #include "xqsettingskey.h"
       
    19 
       
    20 // ============================ MEMBER FUNCTIONS ===============================
       
    21 
       
    22 // -----------------------------------------------------------------------------
       
    23 // XQSettingsKey::XQSettingsKey
       
    24 // -----------------------------------------------------------------------------
       
    25 //
       
    26 XQSettingsKey::XQSettingsKey( 
       
    27         XQSettingsKey::Target target,
       
    28         long int uid,
       
    29         unsigned long int key )
       
    30     {
       
    31     
       
    32     }
       
    33 
       
    34 
       
    35 // -----------------------------------------------------------------------------
       
    36 // XQSettingsKey::~XQSettingsKey
       
    37 // -----------------------------------------------------------------------------
       
    38 //
       
    39 XQSettingsKey::~XQSettingsKey(  )
       
    40     {
       
    41     
       
    42     }
       
    43 
       
    44 
       
    45 // -----------------------------------------------------------------------------
       
    46 // XQSettingsKey::target
       
    47 // -----------------------------------------------------------------------------
       
    48 //
       
    49 XQSettingsKey::Target XQSettingsKey::target(  ) const
       
    50     {
       
    51     
       
    52     XQSettingsKey::Target variable;
       
    53     return variable;
       
    54     }
       
    55 
       
    56 
       
    57 // -----------------------------------------------------------------------------
       
    58 // XQSettingsKey::uid
       
    59 // -----------------------------------------------------------------------------
       
    60 //
       
    61 long int XQSettingsKey::uid(  ) const
       
    62     {
       
    63     
       
    64     return 0;
       
    65     }
       
    66 
       
    67 
       
    68 // -----------------------------------------------------------------------------
       
    69 // XQSettingsKey::key
       
    70 // -----------------------------------------------------------------------------
       
    71 //
       
    72 unsigned long int XQSettingsKey::key(  ) const
       
    73     {
       
    74     
       
    75     return 0;
       
    76     }
       
    77 
       
    78 
       
    79 // -----------------------------------------------------------------------------
       
    80 // XQPublishAndSubscribeSettingsKey::XQPublishAndSubscribeSettingsKey
       
    81 // -----------------------------------------------------------------------------
       
    82 //
       
    83 XQPublishAndSubscribeSettingsKey::XQPublishAndSubscribeSettingsKey( 
       
    84         long int categoryUid,
       
    85         unsigned long int key ) : 
       
    86         XQSettingsKey( XQSettingsKey::TargetPublishAndSubscribe, categoryUid, key )
       
    87     {
       
    88     
       
    89     }
       
    90 
       
    91 
       
    92 // -----------------------------------------------------------------------------
       
    93 // XQPublishAndSubscribeSettingsKey::~XQPublishAndSubscribeSettingsKey
       
    94 // -----------------------------------------------------------------------------
       
    95 //
       
    96 XQPublishAndSubscribeSettingsKey::~XQPublishAndSubscribeSettingsKey(  )
       
    97     {
       
    98     
       
    99     }
       
   100 
       
   101 
       
   102 // -----------------------------------------------------------------------------
       
   103 // XQCentralRepositorySettingsKey::XQCentralRepositorySettingsKey
       
   104 // -----------------------------------------------------------------------------
       
   105 //
       
   106 XQCentralRepositorySettingsKey::XQCentralRepositorySettingsKey( 
       
   107         long int repositoryUid,
       
   108         unsigned long int key ) : 
       
   109         XQSettingsKey( XQSettingsKey::TargetCentralRepository, repositoryUid, key )
       
   110     {
       
   111     
       
   112     }
       
   113 
       
   114 
       
   115 // -----------------------------------------------------------------------------
       
   116 // XQCentralRepositorySettingsKey::~XQCentralRepositorySettingsKey
       
   117 // -----------------------------------------------------------------------------
       
   118 //
       
   119 XQCentralRepositorySettingsKey::~XQCentralRepositorySettingsKey(  )
       
   120     {
       
   121     
       
   122     }
       
   123 
       
   124