DirectPrint/DirectPrintApp/engine/inc/directprinttintcapability.h
branchRCL_3
changeset 11 613a5ff70823
child 19 2275db202402
equal deleted inserted replaced
10:3f1fec088555 11:613a5ff70823
       
     1 /*
       
     2 * Copyright (c) 2010 Kanrikogaku Kenkyusho, Ltd.
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "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 * Kanrikogaku Kenkyusho, Ltd. - Initial contribution
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 * {Description of the file}
       
    16 *
       
    17 */
       
    18 
       
    19 // Protection against nested includes
       
    20 #ifndef DIRECTPRINTTINTCAPABILITY_H
       
    21 #define DIRECTPRINTTINTCAPABILITY_H
       
    22 
       
    23 // User includes
       
    24 #include "directprintbasecapability.h"
       
    25 
       
    26 /**
       
    27  *
       
    28  *  Capability type for TInt type of settings
       
    29  *
       
    30  */
       
    31 class CDirectPrintTIntCapability : public CDirectPrintBaseCapability
       
    32     {
       
    33     public:     //  Constructors and destructors
       
    34 
       
    35         /**
       
    36          *  Destructor
       
    37          */
       
    38         virtual ~CDirectPrintTIntCapability();
       
    39 
       
    40     public:     //  Methods derived from CBaseCapability
       
    41 
       
    42         virtual HBufC* ListBoxTextL();
       
    43         virtual CDirectPrintBaseCapability* CloneL();
       
    44         virtual CAknSettingItem* SettingItemLC(TInt aIndex);
       
    45 
       
    46     public:     // Data
       
    47 
       
    48         // Minimum and maximum value
       
    49         TInt iMin;
       
    50         TInt iMax;
       
    51     };
       
    52 
       
    53 #endif  //  DIRECTPRINTTINTCAPABILITY_H
       
    54 
       
    55 //  End of File