os/kernelhwsrv/kernel/eka/include/drivers/pccd_vcc.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of the License "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // e32\include\drivers\pccd_vcc.h
    15 // 
    16 //
    17 
    18 /**
    19  @file
    20  @publishedPartner
    21  @released
    22 */
    23 
    24 #ifndef __PCCD_VCC_H__
    25 #define __PCCD_VCC_H__
    26 #include <pccd_ifc.h>
    27 
    28 NONSHARABLE_CLASS(DPlatPcCardVcc) : public DPcCardVcc
    29 	{
    30 public:
    31 	DPlatPcCardVcc(TInt aPsuNum, TInt aMediaChangeNum);
    32 	virtual ~DPlatPcCardVcc();
    33 	virtual void DoSetState(TPBusPsuState aState);
    34 	virtual void DoCheckVoltage();
    35 public:
    36     virtual void PsuInfo(TPBusPsuInfo &anInfo);
    37 	};
    38 
    39 #endif