[go: up one dir, main page]

File: htoi.h

package info (click to toggle)
swig1.3 1.3.11-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 6,852 kB
  • ctags: 4,764
  • sloc: ansic: 20,489; cpp: 10,052; sh: 7,256; yacc: 2,669; makefile: 2,381; python: 873; java: 762; tcl: 686; perl: 474; lisp: 444; ruby: 370; php: 367
file content (49 lines) | stat: -rw-r--r-- 1,355 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*******************************************************************************
 * Simplified Wrapper and Interface Generator  (SWIG)
 * 
 * Author : David Beazley
 *
 * Department of Computer Science        
 * University of Chicago
 * 1100 E 58th Street
 * Chicago, IL  60637
 * beazley@cs.uchicago.edu
 *
 * Please read the file LICENSE for the copyright and terms by which SWIG
 * can be used and distributed.
 *******************************************************************************/

/**************************************************************************
 * class HTOI
 **************************************************************************/

class HTOI : public Language {
public :
  virtual void emit_node(Node *);
  virtual void main(int, char *argv[]);
  virtual void top(Node *); 

  /* SWIG directives */
  
  virtual void constantDirective(Node *n);
  virtual void includeDirective(Node *n);

  /* C/C++ parsing */
  
  virtual void cDeclaration(Node *n);
  virtual void externDeclaration(Node *n);
  virtual void enumDeclaration(Node *n);
  virtual void enumvalueDeclaration(Node *n);
  virtual void classDeclaration(Node *n);
  virtual void classforwardDeclaration(Node *n);
  virtual void constructorDeclaration(Node *n);
  virtual void destructorDeclaration(Node *n);
  virtual void accessDeclaration(Node *n);

};