wasCSharpSQLite – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /*
2 * VarTrace.java --
3 *
4 * Interface for creating variable traces.
5 *
6 * Copyright (c) 1997 Sun Microsystems, Inc.
7 *
8 * See the file "license.terms" for information on usage and
9 * redistribution of this file, and for a DISCLAIMER OF ALL
10 * WARRANTIES.
11 *
12 * Included in SQLite3 port to C# for use in testharness only; 2008 Noah B Hart
13 *
14 * RCS @(#) $Id: VarTrace.java,v 1.1.1.1 1998/10/14 21:09:14 cvsadmin Exp $
15 *
16 */
17 using System;
18 namespace tcl.lang
19 {
20  
21 /*
22 * This interface is used to make variable traces. To make a variable
23 * trace, write a class that implements the VarTrace and call
24 * Interp.traceVar with an instance of that class.
25 *
26 */
27  
28 public interface VarTrace
29 {
30  
31 void traceProc( Interp interp, string part1, string part2, TCL.VarFlag flags ); // The traceProc may throw a TclException
32 // to indicate an error during the trace.
33 } // end VarTrace
34 }