[evince] libdocument: Add deprecation macros



commit 86f3e1b95d65e35f9d66b3924ff4a8855bc78403
Author: Christian Persch <chpe gnome org>
Date:   Wed Jun 13 01:03:55 2012 +0200

    libdocument: Add deprecation macros
    
    Add deprecation macros similar to GLIB_DEPRECATED[_FOR].

 evince-document.h       |    1 +
 libdocument/Makefile.am |    1 +
 libdocument/ev-macros.h |   32 ++++++++++++++++++++++++++++++++
 3 files changed, 34 insertions(+), 0 deletions(-)
---
diff --git a/evince-document.h b/evince-document.h
index 1db675b..79284f1 100644
--- a/evince-document.h
+++ b/evince-document.h
@@ -55,6 +55,7 @@
 #include <libdocument/ev-selection.h>
 #include <libdocument/ev-transition-effect.h>
 #include <libdocument/ev-version.h>
+#include <libdocument/ev-macros.h>
 
 #undef __EV_EVINCE_DOCUMENT_H_INSIDE__
 
diff --git a/libdocument/Makefile.am b/libdocument/Makefile.am
index dcf71b0..ccfa6d0 100644
--- a/libdocument/Makefile.am
+++ b/libdocument/Makefile.am
@@ -35,6 +35,7 @@ INST_H_SRC_FILES = 				\
 	ev-link-action.h			\
 	ev-link-dest.h				\
 	ev-link.h				\
+	ev-macros.h				\
 	ev-mapping-list.h			\
 	ev-page.h				\
 	ev-render-context.h			\
diff --git a/libdocument/ev-macros.h b/libdocument/ev-macros.h
new file mode 100644
index 0000000..ece677c
--- /dev/null
+++ b/libdocument/ev-macros.h
@@ -0,0 +1,32 @@
+/*
+ * Copyright  2012 Christian Persch
+ *
+ * This library is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by the
+ * Free Software Foundation; either version 2.1 of the License, or (at your
+ * option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+#ifndef EV_MACROS_H
+#define EV_MACROS_H
+
+#if defined(EV_DISABLE_DEPRECATION_WARNINGS) || defined(EVINCE_COMPILATION)
+#define EV_DEPRECATED
+#define EV_DEPRECATED_FOR(f)
+#define EV_UNAVAILABLE(maj,min)
+#else
+#define EV_DEPRECATED G_DEPRECATED
+#define EV_DEPRECATED_FOR(f) G_DEPRECATED_FOR(f)
+#define EV_UNAVAILABLE(maj,min) G_UNAVAILABLE(maj,min)
+#endif
+
+#endif /* #ifndef EV_MACROS_H */



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]