wasCSharpSQLite – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /*
2 * TraceRecord.java --
3 *
4 * This class is used internally by CallFrame to store one
5 * variable trace.
6 *
7 * Copyright (c) 1997 Sun Microsystems, Inc.
8 *
9 * See the file "license.terms" for information on usage and
10 * redistribution of this file, and for a DISCLAIMER OF ALL
11 * WARRANTIES.
12 *
13 * Included in SQLite3 port to C# for use in testharness only; 2008 Noah B Hart
14 *
15 * RCS @(#) $Id: TraceRecord.java,v 1.2 1999/07/28 03:27:36 mo Exp $
16 *
17 */
18 using System;
19 namespace tcl.lang
20 {
21  
22 /// <summary> This class is used internally by CallFrame to store one variable
23 /// trace.
24 /// </summary>
25  
26 class TraceRecord
27 {
28  
29 /// <summary> Stores info about the conditions under which this trace should be
30 /// triggered. Should be a combination of TCL.VarFlag.TRACE_READS, TCL.VarFlag.TRACE_WRITES
31 /// or TCL.VarFlag.TRACE_UNSETS.
32 /// </summary>
33  
34 internal TCL.VarFlag flags;
35  
36 /// <summary> Stores the trace procedure to invoke when a trace is fired.</summary>
37  
38 internal VarTrace trace;
39 } // end TraceRecord
40 }