webengine/wmlengine/src/css/include/CSSPropertyTable.h
changeset 74 91031d3aab7d
parent 68 92a765b5b3e7
child 85 e358f2276d3f
--- a/webengine/wmlengine/src/css/include/CSSPropertyTable.h	Mon May 03 13:32:15 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,73 +0,0 @@
-/*
-* Copyright (c) 2003 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of the License "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:  Contains mapping of string values to internal tokens
-*
-*/
-
-
-#ifndef TCSSPROPERTYTABLE_H
-#define TCSSPROPERTYTABLE_H
-
-//  INCLUDES
-#include <e32std.h>
-#include "nw_lmgr_propertylist.h"
-
-// CONSTANTS
-
-// MACROS
-struct TCSSPropertyTablePropEntry
-{
-  const TText16* strName;
-  NW_LMgr_PropertyName_t tokenName;
-  TUint32 type;
-};
-
-struct TCSSPropertyTablePropValEntry
-{
-  const TText16 *strVal;
-  NW_LMgr_PropertyValueToken_t tokenVal;
-};
-
-// FUNCTION PROTOTYPES
-
-// FORWARD DECLARATIONS
-
-// CLASS DECLARATION
-
-/**
-*  This class Contains mapping of string values to internal tokens
-*
-*  @lib css.lib
-*  @since 2.1
-*/
-class TCSSPropertyTable
-  {
-   public:
-
-    static const TCSSPropertyTablePropEntry* GetPropertyEntry(const TText16* aStrName);
-
-    static TBool GetPropertyValToken(const TText16* aVal, NW_LMgr_PropertyValueToken_t *aToken);
-
-    static const TCSSPropertyTablePropEntry* GetPropEntryByToken (NW_LMgr_PropertyName_t aTokenName);
-
-    static const TCSSPropertyTablePropValEntry* GetPropValEntryByToken (NW_LMgr_PropertyValueToken_t aTokenVal);
-
-    static const TText16* GetPropValType(TUint8 aValueType);
-
-   private:
-
-
-};
-
-#endif /* TCSSPROPERTYTABLE_H */