]> git.lyx.org Git - lyx.git/blobdiff - src/support/types.h
Add additional LASSERT-type macros for dealing with various kinds
[lyx.git] / src / support / types.h
index 48fc219e8fa59d9e65aec4632a687eaacef8f896..0e25333672af6336df248e858028134e5703ad39 100644 (file)
@@ -8,7 +8,7 @@
  * indices wile trying to stay compatible with types used
  * by the standard containers.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
 
 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
@@ -45,9 +39,6 @@ namespace lyx {
        /// a type for sizes
        typedef size_t     size_type;
 
-       /// a type used for numbering text classes
-       typedef size_t     textclass_type;
-
 #else
 
        // These structs wrap simple things to make them distinguishible
@@ -66,19 +57,6 @@ namespace lyx {
                base_type data_;
        };
 
-       struct textclass_type {
-               ///
-               typedef size_t   base_type;
-               ///
-               textclass_type(base_type t) { data_ = t; }
-               ///
-               operator base_type() const { return data_; }
-               ///
-               private:
-               base_type data_;
-       };
-
-
 #endif
 
        ///
@@ -96,6 +74,14 @@ namespace lyx {
                NEXT_WORD
        };
 
+       ///
+       enum PageSides {
+               ///
+               OneSide,
+               ///
+               TwoSides
+       };
+
 } // namespace lyx
 
 #endif // LYX_TYPES_H