diff options
Diffstat (limited to 'Build/source/utils/asymptote/guideflags.h')
-rw-r--r-- | Build/source/utils/asymptote/guideflags.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Build/source/utils/asymptote/guideflags.h b/Build/source/utils/asymptote/guideflags.h new file mode 100644 index 00000000000..37131422d29 --- /dev/null +++ b/Build/source/utils/asymptote/guideflags.h @@ -0,0 +1,17 @@ +/***** + * 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 { + +enum side { OUT, IN, END, JOIN }; + +} + +#endif //GUIDEFLAGS_H |