uiacceltk/hitchcock/Client/src/alfcrppluginclient.cpp
branchRCL_3
changeset 3 d8a3531bc6b8
equal deleted inserted replaced
0:15bf7259bb7c 3:d8a3531bc6b8
       
     1 /*
       
     2 * Copyright (c) 2010 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:   ALF window server client extension implementation.
       
    15 *
       
    16 */
       
    17 
       
    18 #include "alfcrppluginclient.h"
       
    19 
       
    20 // --------------------------------------------------------------------------
       
    21 // CAlfCrpPluginClient::CAlfCrpPluginClient
       
    22 // --------------------------------------------------------------------------
       
    23 //
       
    24 CAlfCrpPluginClient::CAlfCrpPluginClient()
       
    25     {
       
    26     }
       
    27 
       
    28 // --------------------------------------------------------------------------
       
    29 // CAlfCrpPluginClient::~CAlfCrpPluginClient
       
    30 // --------------------------------------------------------------------------
       
    31 //
       
    32 CAlfCrpPluginClient::~CAlfCrpPluginClient()
       
    33     {
       
    34     }
       
    35 
       
    36 // --------------------------------------------------------------------------
       
    37 // CAlfCrpPluginClient::ConstructL
       
    38 // --------------------------------------------------------------------------
       
    39 //
       
    40 void CAlfCrpPluginClient::ConstructL()
       
    41     {
       
    42     const TUid id = { 0x2002C358 };
       
    43     BaseConstructL( id, KNullDesC8 );
       
    44     }    
       
    45 
       
    46 // --------------------------------------------------------------------------
       
    47 // CAlfCrpPluginClient::Synchronize
       
    48 // --------------------------------------------------------------------------
       
    49 //    
       
    50 void CAlfCrpPluginClient::Synchronize()
       
    51     {
       
    52     TPckgC<TInt> buf(0);
       
    53     SendMessage(buf);
       
    54     Flush();
       
    55     }
       
    56 
       
    57 // --------------------------------------------------------------------------
       
    58 // CAlfCrpPluginClient::HandleMessage
       
    59 // --------------------------------------------------------------------------
       
    60 //    
       
    61 void CAlfCrpPluginClient::HandleMessage(const TDesC8& /*aData*/)
       
    62     {
       
    63     }
       
    64     
       
    65 // --------------------------------------------------------------------------
       
    66 // CAlfCrpPluginClient::OnReplace
       
    67 // --------------------------------------------------------------------------
       
    68 //    
       
    69 void CAlfCrpPluginClient::OnReplace()
       
    70     {
       
    71     }
       
    72 
       
    73 // End of file
       
    74