namespace HandBrake.Interop
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
///
/// Represents a HandBrake style native list.
///
public class NativeList
{
///
/// The list of native memory locations allocated for this list.
///
private List allocatedMemory = new List();
///
/// Gets or sets the pointer to the native list.
///
public IntPtr ListPtr { get; set; }
///
/// Gets the list of native memory locations allocated for this list.
///
public List AllocatedMemory
{
get
{
return allocatedMemory;
}
}
}
}