1 // Copyright (c) 1994 James Clark 2 // See the file COPYING for copying permission. 3 #pragma ident "%Z%%M% %I% %E% SMI" 4 5 #ifndef MarkupScan_INCLUDED 6 #define MarkupScan_INCLUDED 1 7 8 #ifdef SP_NAMESPACE 9 namespace SP_NAMESPACE { 10 #endif 11 12 struct MarkupScan { 13 enum Type { 14 normal, 15 in, 16 out, 17 suppress 18 }; 19 }; 20 21 #ifdef SP_NAMESPACE 22 } 23 #endif 24 25 #endif /* not MarkupScan_INCLUDED */ 26