]> 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 65928821c3f7de3dc54302b24d537ce79ec04ed4..206d2818b15672ca82067794227c4cf2fbde2ed4 100644 (file)
 #ifndef LYX_TYPES_H
 #define LYX_TYPES_H
 
-#include "docstring.h"
-
-#include <boost/cstdint.hpp>
-
 #include <cstddef>
-#include <string>
 
 namespace lyx {
 
-       // The type used to hold characters in paragraphs
-       typedef boost::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
-
-       //typedef std::wstring docstring;
-
        /// a type for positions used in paragraphs
        // needs to be signed for a while to hold the special value -1 that is
        // used there
@@ -102,6 +90,14 @@ namespace lyx {
                NEXT_WORD
        };
 
+       ///
+       enum PageSides {
+               ///
+               OneSide,
+               ///
+               TwoSides
+       };
+
 } // namespace lyx
 
 #endif // LYX_TYPES_H