javaextensions/iapinfo/inc.s60/iapinfosession.h
branchRCL_3
changeset 27 d5e927d5853b
parent 25 ae942d28ec0e
equal deleted inserted replaced
26:2455ef1f5bbc 27:d5e927d5853b
       
     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:  JavaCommDB class implementation
       
    15  *
       
    16 */
       
    17 
       
    18 #ifndef IAINFOSESSION_H
       
    19 #define IAINFOSESSION_H
       
    20 
       
    21 
       
    22 #include <commsdattypesv1_1.h>
       
    23 #include <commsdat.h>
       
    24 #include <metadatabase.h>  
       
    25 #include "functionserver.h"
       
    26 #include <e32base.h>
       
    27 
       
    28 using namespace java::util;
       
    29 
       
    30 class IapInfoSession  : public FunctionServer 
       
    31 {
       
    32   public:  static IapInfoSession* NewL();
       
    33     
       
    34   private:
       
    35             IapInfoSession();
       
    36             void ConstructL();
       
    37 
       
    38     /**
       
    39      * Pointer to the actual DB Session object.
       
    40      * Initialized in the Open() function.
       
    41      */
       
    42   public:
       
    43         CommsDat::CMDBSession* iDb;            
       
    44           
       
    45 
       
    46 
       
    47 
       
    48 };
       
    49 
       
    50 #endif // IAINFOSESSION_H