X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/9adccb27da69b60d058aa37867d55ea20ecf97ca..c9219df21468b9fe8e171ac17b4196ca570dda7c:/glib/ginterface.lisp diff --git a/glib/ginterface.lisp b/glib/ginterface.lisp index f0d3dcc..b54c665 100644 --- a/glib/ginterface.lisp +++ b/glib/ginterface.lisp @@ -15,7 +15,7 @@ ;; License along with this library; if not, write to the Free Software ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -;; $Id: ginterface.lisp,v 1.4 2004-11-06 21:39:58 espen Exp $ +;; $Id: ginterface.lisp,v 1.5 2004-11-07 15:54:15 espen Exp $ (in-package "GLIB") @@ -94,6 +94,18 @@ (declare (ignore class args)) (to-alien-function 'gobject)) +(defmethod reader-function ((class ginterface-class) &rest args) + (declare (ignore class args)) + (reader-function 'gobject)) + +(defmethod writer-function ((class ginterface-class) &rest args) + (declare (ignore class args)) + (writer-function 'gobject)) + +(defmethod destroy-function ((class ginterface-class) &rest args) + (declare (ignore class args)) + (destroy-function 'gobject)) + ;;;;