summaryrefslogtreecommitdiff
path: root/gio/src/dataoutputstream.hg
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2010-05-31 13:16:28 +0200
committerMurray Cumming <murrayc@murrayc.com>2010-05-31 13:16:28 +0200
commitde7e9208edb460830accf5835afcbbf9ac4d212b (patch)
treed74cd224716e60e11723a3ba2777f1a757c218fe /gio/src/dataoutputstream.hg
parentf510673363137d691f5063bc68d9fa7bb3ef9709 (diff)
downloadglibmm-de7e9208edb460830accf5835afcbbf9ac4d212b.tar.gz
Remove the reduced API options and code, as discussed on mailing list.
* configure.ac: Removed the --enable-api-exceptions, --enable-api-properties, --enable-api-vfuncs and --enable-api-default-signal-handlers options. * build/reduced.m4: Removed. * tools/m4/*.m4: * tools/pm/Output.pm: Remove any use of ifdefs and auto_ptr for reduced API. * *.[hg|ccg|h|cc]: Remove the idefed code.
Diffstat (limited to 'gio/src/dataoutputstream.hg')
-rw-r--r--gio/src/dataoutputstream.hg32
1 files changed, 0 insertions, 32 deletions
diff --git a/gio/src/dataoutputstream.hg b/gio/src/dataoutputstream.hg
index 5b7660f9..1bf382d6 100644
--- a/gio/src/dataoutputstream.hg
+++ b/gio/src/dataoutputstream.hg
@@ -52,77 +52,45 @@ public:
/** non-cancellable version of put_byte()
*/
-#ifdef GLIBMM_EXCEPTIONS_ENABLED
bool put_byte(guchar data);
-#else
- bool put_byte(guchar data, std::auto_ptr<Glib::Error>& error);
-#endif //GLIBMM_EXCEPTIONS_ENABLED
_WRAP_METHOD(bool put_int16(gint16 data, const Glib::RefPtr<Cancellable>& cancellable), g_data_output_stream_put_int16, errthrow)
/** non-cancellable version of put_int16()
*/
-#ifdef GLIBMM_EXCEPTIONS_ENABLED
bool put_int16(gint16 data);
-#else
- bool put_int16(gint16 data, std::auto_ptr<Glib::Error>& error);
-#endif //GLIBMM_EXCEPTIONS_ENABLED
_WRAP_METHOD(bool put_uint16(guint16 data, const Glib::RefPtr<Cancellable>& cancellable), g_data_output_stream_put_uint16, errthrow)
/** non-cancellable version of put_uint16()
*/
-#ifdef GLIBMM_EXCEPTIONS_ENABLED
bool put_uint16(guint16 data);
-#else
- bool put_uint16(guint16 data, std::auto_ptr<Glib::Error>& error);
-#endif //GLIBMM_EXCEPTIONS_ENABLED
_WRAP_METHOD(bool put_int32(gint32 data, const Glib::RefPtr<Cancellable>& cancellable), g_data_output_stream_put_int32, errthrow)
/** non-cancellable version of put_int32()
*/
-#ifdef GLIBMM_EXCEPTIONS_ENABLED
bool put_int32(gint32 data);
-#else
- bool put_int32(gint32 data, std::auto_ptr<Glib::Error>& error);
-#endif //GLIBMM_EXCEPTIONS_ENABLED
_WRAP_METHOD(bool put_uint32(guint32 data, const Glib::RefPtr<Cancellable>& cancellable), g_data_output_stream_put_uint32, errthrow)
/** non-cancellable version of put_uint32()
*/
-#ifdef GLIBMM_EXCEPTIONS_ENABLED
bool put_uint32(guint32 data);
-#else
- bool put_uint32(guint32 data, std::auto_ptr<Glib::Error>& error);
-#endif //GLIBMM_EXCEPTIONS_ENABLED
_WRAP_METHOD(bool put_int64(gint64 data, const Glib::RefPtr<Cancellable>& cancellable), g_data_output_stream_put_int64, errthrow)
/** non-cancellable version of put_int64()
*/
-#ifdef GLIBMM_EXCEPTIONS_ENABLED
bool put_int64(gint64 data);
-#else
- bool put_int64(gint64 data, std::auto_ptr<Glib::Error>& error);
-#endif //GLIBMM_EXCEPTIONS_ENABLED
_WRAP_METHOD(bool put_uint64(guint64 data, const Glib::RefPtr<Cancellable>& cancellable), g_data_output_stream_put_uint64, errthrow)
/** non-cancellable version of put_uint64()
*/
-#ifdef GLIBMM_EXCEPTIONS_ENABLED
bool put_uint64(guint64 data);
-#else
- bool put_uint64(guint64 data, std::auto_ptr<Glib::Error>& error);
-#endif //GLIBMM_EXCEPTIONS_ENABLED
_WRAP_METHOD(bool put_string(std::string str, const Glib::RefPtr<Cancellable>& cancellable), g_data_output_stream_put_string, errthrow)
/** non-cancellable version of put_string()
*/
-#ifdef GLIBMM_EXCEPTIONS_ENABLED
bool put_string(std::string str);
-#else
- bool put_string(std::string str, std::auto_ptr<Glib::Error>& error);
-#endif //GLIBMM_EXCEPTIONS_ENABLED
_WRAP_PROPERTY("byte-order", DataStreamByteOrder)
};