videocollection/mpxmyvideoscollection/tsrc/ut_vcxmyvideosmdsdb/src/mdeobjectdef.cpp
branchRCL_3
changeset 23 8f0df5c82986
equal deleted inserted replaced
21:55fa1ec415c6 23:8f0df5c82986
       
     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:  
       
    15 *
       
    16 */
       
    17 
       
    18 #include "mdeobjectdef.h"
       
    19 #include "mdenamespacedef.h"
       
    20 #include "mdepropertydef.h"
       
    21 
       
    22 
       
    23 
       
    24 CMdEObjectDef::CMdEObjectDef( const TMdCObjectDef& aObjectDef, CMdENamespaceDef& aNamespaceDef )
       
    25     : iObjectDef( aObjectDef ), iNamespaceDef(aNamespaceDef)
       
    26     {
       
    27     }
       
    28 
       
    29 CMdEObjectDef* CMdEObjectDef::NewL( const TMdCObjectDef& aObjectDef,
       
    30 		CMdCSerializationBuffer& aSchemaBuffer, CMdENamespaceDef& aNamespaceDef )
       
    31     {
       
    32     }
       
    33 
       
    34 CMdEObjectDef* CMdEObjectDef::NewLC( const TMdCObjectDef& aObjectDef,
       
    35 		CMdCSerializationBuffer& aSchemaBuffer, CMdENamespaceDef& aNamespaceDef )
       
    36     {
       
    37     }
       
    38 
       
    39 void CMdEObjectDef::ConstructL(CMdCSerializationBuffer& aSchemaBuffer)
       
    40     {
       
    41     }
       
    42 
       
    43 CMdEObjectDef::~CMdEObjectDef()
       
    44     {
       
    45     }
       
    46 
       
    47 EXPORT_C TDefId CMdEObjectDef::Id() const
       
    48     {
       
    49     }
       
    50 
       
    51 EXPORT_C CMdENamespaceDef& CMdEObjectDef::NamespaceDef() const
       
    52     {
       
    53     }
       
    54 
       
    55 EXPORT_C CMdEObjectDef* CMdEObjectDef::ParentL()
       
    56     {
       
    57     }
       
    58 
       
    59 EXPORT_C const TDesC& CMdEObjectDef::Name() const
       
    60     {
       
    61     }
       
    62 
       
    63 EXPORT_C TInt CMdEObjectDef::Compare( const CMdEObjectDef& aObjectDef ) const
       
    64     {
       
    65     }
       
    66 
       
    67 EXPORT_C TInt CMdEObjectDef::PropertyDefCount() const
       
    68     {
       
    69     }
       
    70 
       
    71 EXPORT_C CMdEPropertyDef& CMdEObjectDef::PropertyDefL(TInt aIndex)
       
    72 	{
       
    73 	}
       
    74 
       
    75 EXPORT_C CMdEPropertyDef& CMdEObjectDef::GetPropertyDefL( const TDesC& aName )
       
    76 	{
       
    77 	}
       
    78 
       
    79 CMdEPropertyDef* CMdEObjectDef::GetPropertyDefL( const TDesC& aName, CMdEObjectDef* aChild )
       
    80     {    
       
    81     }
       
    82 
       
    83 CMdEPropertyDef* CMdEObjectDef::GetPropertyDefL(TDefId aId, CMdEObjectDef* aChild)
       
    84     {
       
    85     }
       
    86 
       
    87 CMdEPropertyDef* CMdEObjectDef::PropertyDefL(TInt aIndex, CMdEObjectDef* /*aChild*/)
       
    88 	{
       
    89 	}
       
    90 
       
    91 TInt CMdEObjectDef::CompareProperties(const CMdEPropertyDef& aFirst, const CMdEPropertyDef& aSecond)
       
    92     {
       
    93     }
       
    94