singrdk/base/Libraries/Policy/Instruction.cs

17 lines
604 B
C#
Raw Permalink Normal View History

2008-11-17 18:29:00 -05:00
// ----------------------------------------------------------------------------
2008-03-05 09:52:00 -05:00
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
2008-11-17 18:29:00 -05:00
// ----------------------------------------------------------------------------
2008-03-05 09:52:00 -05:00
2008-11-17 18:29:00 -05:00
namespace Microsoft.Singularity.Policy.Engine
{
2008-03-05 09:52:00 -05:00
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; }
}
}