]> git.lyx.org Git - lyx.git/blobdiff - src/support/types.h
Now that exceptions are allowed, handle gracefully the case where a Buffer temp direc...
[lyx.git] / src / support / types.h
index 48fc219e8fa59d9e65aec4632a687eaacef8f896..206d2818b15672ca82067794227c4cf2fbde2ed4 100644 (file)
 
 namespace lyx {
 
-       // The type used to hold characters in paragraphs
-       //typedef uint32_t char_type; // Possibly the ucs-4 type we will use
-       //typedef wchar_t char_type;  // The wide char type CJK-LyX uses
-       typedef char char_type;       // Current narrow char type in use
-
-
        /// a type for positions used in paragraphs
        // needs to be signed for a while to hold the special value -1 that is
        // used there
@@ -96,6 +90,14 @@ namespace lyx {
                NEXT_WORD
        };
 
+       ///
+       enum PageSides {
+               ///
+               OneSide,
+               ///
+               TwoSides
+       };
+
 } // namespace lyx
 
 #endif // LYX_TYPES_H