singrdk/base/Libraries/Policy/Instruction.cs

18 lines
643 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
///////////////////////////////////////////////////////////////////////////////
namespace Microsoft.Singularity.Policy.Engine {
internal delegate void Execute();
// An Instruction represents an abstract WAM instruction,
// using a method delegate. All instructions have length 1.
internal class Instruction {
internal Execute _execute;
internal Instruction(Execute execute) { _execute = execute; }
}
}