wasCSharpSQLite – Blame information for rev 4

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /*
2 * BackSlashResult.java
3 *
4 * Copyright (c) 1997 Cornell University.
5 * Copyright (c) 1997 Sun Microsystems, Inc.
6 *
7 * See the file "license.terms" for information on usage and
8 * redistribution of this file, and for a DISCLAIMER OF ALL
9 * WARRANTIES.
10 *
11 * Included in SQLite3 port to C# for use in testharness only; 2008 Noah B Hart
12 * RCS @(#) $Id: BackSlashResult.java,v 1.1.1.1 1998/10/14 21:09:19 cvsadmin Exp $
13 *
14 */
15 using System;
16 namespace tcl.lang
17 {
18  
19 class BackSlashResult
20 {
21 internal char c;
22 internal int nextIndex;
23 internal bool isWordSep;
24 internal BackSlashResult( char ch, int w )
25 {
26 c = ch;
27 nextIndex = w;
28 isWordSep = false;
29 }
30 internal BackSlashResult( char ch, int w, bool b )
31 {
32 c = ch;
33 nextIndex = w;
34 isWordSep = b;
35 }
36 }
37 }