13 lines
423 B
C#
13 lines
423 B
C#
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Microsoft Research Singularity
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
namespace Microsoft.Singularity.Policy.Engine {
|
|
// A Cell is a value held in the heap or the stack.
|
|
internal abstract class Cell { }
|
|
}
|