X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/6baf860c07c91b2209e4738f469248e7d8f4d6eb..3b8e5eb03e50ab6c83407de042c1134bf3702484:/glib/ginterface.lisp diff --git a/glib/ginterface.lisp b/glib/ginterface.lisp index 350e243..4653966 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)) + ;;;;