wasCSharpSQLite – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /*
2 * AssocData.java --
3 *
4 * The API for registering named data objects in the Tcl
5 * interpreter.
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 * RCS @(#) $Id: AssocData.java,v 1.2 1999/05/11 23:10:03 dejong Exp $
15 *
16 */
17 using System;
18 namespace tcl.lang
19 {
20  
21 /// <summary> This interface is the API for registering named data objects in the
22 /// Tcl interpreter.
23 /// </summary>
24  
25 public interface AssocData
26 {
27  
28 void disposeAssocData( Interp interp ); // The interpreter in which this AssocData
29 // instance is registered in.
30 }
31 }