crashanalysercmd/Libraries/File Formats/Plugins/XmlFilePlugin/FileFormat/CXmlFileUtilities.cs
changeset 2 0c91f0baec58
equal deleted inserted replaced
1:7a31f7298d8f 2:0c91f0baec58
       
     1 /*
       
     2 * Copyright (c) 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 using System;
       
    18 using System.Collections.Generic;
       
    19 using System.Text;
       
    20 using CrashItemLib.Crash.Symbols;
       
    21 using SymbianStructuresLib.Debug.Symbols;
       
    22 
       
    23 namespace XmlFilePlugin.PluginImplementations.FileFormat
       
    24 {
       
    25     static class CXmlFileUtilities
       
    26     {
       
    27         public static bool IsSymbolSerializable(CISymbol aSymbol)
       
    28         {
       
    29             bool ret = true;
       
    30             //
       
    31             if (aSymbol.IsNull)
       
    32             {
       
    33                 ret = false;
       
    34             }
       
    35             else
       
    36             {
       
    37                 TSymbolType type = aSymbol.Symbol.Type;
       
    38                 ret = ( type != TSymbolType.EUnknown );
       
    39             }           
       
    40             return ret;
       
    41         }
       
    42     }
       
    43 
       
    44 }