mtpfws/mtpfw/datatypes/interface/tmtptypeint16.h
changeset 0 d0791faffa3f
equal deleted inserted replaced
-1:000000000000 0:d0791faffa3f
       
     1 // Copyright (c) 2006-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 "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 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @publishedPartner
       
    19  @released
       
    20 */
       
    21 
       
    22 #ifndef TMTPTYPEINT16_H
       
    23 #define TMTPTYPEINT16_H
       
    24 
       
    25 #include <e32std.h>
       
    26 #include <mtp/tmtptypeintbase.h>
       
    27 
       
    28 /**
       
    29 Defines the MTP signed 16-bit integer data type.
       
    30 @publishedPartner
       
    31 @released 
       
    32 */
       
    33 class TMTPTypeInt16 : public TMTPTypeIntBase
       
    34     {
       
    35 
       
    36 public:
       
    37 
       
    38 	IMPORT_C TMTPTypeInt16();	
       
    39 	IMPORT_C TMTPTypeInt16(TInt16 aData);
       
    40 
       
    41     IMPORT_C void Set(TInt16 aValue);
       
    42     IMPORT_C TInt16 Value() const;
       
    43     };
       
    44 
       
    45 #endif // TMTPTYPEINT16_H