Git commit eff968b6f9c55f39fed595f04bf283c3b9b3d491 by Jaroslaw Staniek. Committed on 30/06/2015 at 16:51. Pushed by staniek into branch 'master'. Add the Signedness enum M +7 -0 src/KDbGlobal.h http://commits.kde.org/kdb/eff968b6f9c55f39fed595f04bf283c3b9b3d491 diff --git a/src/KDbGlobal.h b/src/KDbGlobal.h index 66fb101..169f156 100644 --- a/src/KDbGlobal.h +++ b/src/KDbGlobal.h @@ -147,6 +147,13 @@ enum IdentifierEscapingType { KDbEscaping //!< Identifiers are escaped using KDb's generic conve= ntion }; = +//! A property of numeric values +enum Signedness +{ + Signed =3D 0, //!< Values can be both positive and negative + Unsigned =3D 1 //!< Values can be both non-negative +}; + } = //! Macros for marking future QObject::tr() translations.