File: OTMStringCST.h

package info (click to toggle)
tom 1.1.1-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 6,340 kB
  • ctags: 2,244
  • sloc: objc: 27,863; ansic: 9,804; sh: 7,411; yacc: 3,377; lex: 966; asm: 208; makefile: 62; cpp: 10
file content (28 lines) | stat: -rw-r--r-- 614 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
   Written by Pieter J. Schoenmakers <tiggr@ics.ele.tue.nl>

   Copyright (C) 1996 Pieter J. Schoenmakers.

   This file is part of TOM.  TOM is distributed under the terms of the
   TOM License, a copy of which can be found in the TOM distribution; see
   the file LICENSE.

   $Id: OTMStringCST.h,v 1.3 1998/01/05 01:13:48 tiggr Exp $  */

#import "OTMExpr.h"

@interface OTMStringCST: OTMExpr
{
  /* The structural counterpart of this string.  */
  LTTStringCST *structure;
}

-(LTTStringCST *) structure;

#ifdef OTMSTRINGCST_DECLARE_PRIVATE_METHODS

-initWithStructure: (LTTStringCST *) str;

#endif

@end