//
//
//
//
// $Revision: 2185 $
//
using System;
namespace Debugger
{
///
/// Provides data for events related to class
///
[Serializable]
public class ValueEventArgs : ProcessEventArgs
{
Value val;
/// The value that caused the event
public Value Value {
get {
return val;
}
}
/// Initializes a new instance of the class
public ValueEventArgs(Value val): base(val.Process)
{
this.val = val;
}
}
}