connectivitymodules/SeCon/services/csc/inc/sconcsc.h
branchRCL_3
changeset 19 0aa8cc770c8a
parent 18 453dfc402455
child 20 4a793f564d72
equal deleted inserted replaced
18:453dfc402455 19:0aa8cc770c8a
     1 /*
       
     2 * Copyright (c) 2005-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:  CSConCSC header file
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDES
       
    20 
       
    21 #ifndef _SCONCSC_H_
       
    22 #define _SCONCSC_H_
       
    23 
       
    24 #include <e32base.h>
       
    25 
       
    26 class CCapInfo;
       
    27 
       
    28 //============================================================
       
    29 // Class CSConCSC declaration
       
    30 //============================================================
       
    31 class CSConCSC : public CBase
       
    32 {
       
    33 public:
       
    34     static CSConCSC* NewL();        
       
    35     ~CSConCSC();
       
    36 
       
    37 public:
       
    38     // Creates capability object and places it into aBuf.
       
    39     // Returns system error code
       
    40 	virtual TInt CapabilityObject( CBufFlat& aBuf );
       
    41 
       
    42 private:	
       
    43 	void CapabilityObjectL( CBufFlat& aBuf );
       
    44 	
       
    45 	CSConCSC();
       
    46     virtual void ConstructL();
       
    47     
       
    48 private: // data
       
    49     CCapInfo*   iCapInfo;
       
    50     
       
    51 };
       
    52 
       
    53 IMPORT_C CSConCSC* CreateCSConCSCL();
       
    54 typedef CSConCSC* (*TSConCreateCSConCSCFunc) ();   
       
    55 
       
    56 
       
    57 #endif // SCONCSC
       
    58 
       
    59 // End of file
       
    60 
       
    61