ImagePrint/ImagePrintEngine/DeviceProtocols/pictbridge2/inc/cpbconnect.h
branchRCL_3
changeset 20 159fc2f68139
parent 17 26673e532f65
child 21 d59c248c9d36
equal deleted inserted replaced
17:26673e532f65 20:159fc2f68139
     1 /*
       
     2 * Copyright (c) 2002-2007 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:  Contains the CPBConnect class definition.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CPBCONNECT_H
       
    20 #define CPBCONNECT_H
       
    21 
       
    22 class MPBObserver;
       
    23 class CPBEvent;
       
    24 class CDpsEngine;
       
    25 
       
    26 
       
    27 class CPBConnect : public CActive
       
    28 	{
       
    29 public:
       
    30     static CPBConnect* NewL( CDpsEngine& aEngine, MPBObserver& aObserver );
       
    31     CPBConnect( CDpsEngine& aEngine, MPBObserver& aObserver );
       
    32     ~CPBConnect();    
       
    33     void ConstructL();
       
    34     
       
    35 
       
    36 protected: // from CActive
       
    37     void RunL();
       
    38     void DoCancel();
       
    39 
       
    40 private:
       
    41 	CDpsEngine& iDpsEngine;
       
    42     MPBObserver& iObserver;    
       
    43     CPBEvent* iEvent;
       
    44 	};
       
    45 
       
    46 #endif // CPBCONNECT_H
       
    47 
       
    48 //  End of File