Cosmos/source/Cosmos.Messages/MM/AllocationResponse.cs
bklooste_cp 7c3b55273d
2009-07-21 05:09:58 +00:00

25 lines
433 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Kernel.MM
{
public class AllocationResponse : MMMessage
{
private UIntPtr address;
public UIntPtr Address
{
get { return address; }
}
public AllocationResponse(UIntPtr Address)
{
address = Address;
}
}
}