chiark / gitweb /
Added reader/writer/destroy methods
authorespen <espen>
Sun, 7 Nov 2004 15:54:15 +0000 (15:54 +0000)
committerespen <espen>
Sun, 7 Nov 2004 15:54:15 +0000 (15:54 +0000)
glib/ginterface.lisp

index f0d3dcc78936d410ad4f07538ee800e3e72b5ca3..b54c665e860637ca4e9620f8c50ffdc3fe02af7d 100644 (file)
@@ -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 @@ (defmethod to-alien-function ((class ginterface-class) &rest args)
   (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))
+
 
 ;;;;