File: guideflags.h

package info (click to toggle)
asymptote 2.38-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 11,908 kB
  • ctags: 13,089
  • sloc: cpp: 60,286; ansic: 4,754; python: 3,909; sh: 3,363; perl: 1,563; lisp: 1,363; makefile: 606; yacc: 554; lex: 444
file content (20 lines) | stat: -rw-r--r-- 298 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*****
 * guideflags.h
 * Tom Prince 2004/5/12
 *
 * These flags are used to indicate what specifications of the join are
 * put on the stack.
 *****/
#ifndef GUIDEFLAGS_H
#define GUIDEFLAGS_H

namespace camp {

#undef OUT
#undef IN
  
enum side { OUT, IN, END, JOIN };
  
}

#endif //GUIDEFLAGS_H