Cosmos/source2/Debug/Cosmos.Debug.VSDebugEngine/AD7.Impl/DebugLocalInfo.cs

59 lines
No EOL
1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.Debugger.Interop;
namespace Cosmos.Debug.VSDebugEngine
{
public class DebugLocalInfo
{
public bool IsLocal
{
get;
set;
}
public bool IsReference
{
get;
set;
}
public string Type
{
get;
set;
}
public string Name
{
get;
set;
}
public int Offset
{
get;
set;
}
public uint Pointer
{
get;
set;
}
public int Index
{
get;
set;
}
private List<IDebugProperty2> m_children = new List<IDebugProperty2>();
public List<IDebugProperty2> Children
{
get { return m_children; }
set { m_children = value; }
}
}
}