Files
ziutek-gst/clock.go
2011-07-25 22:35:11 +02:00

19 lines
201 B
Go

package gst
/*
#include <gst/gst.h>
*/
import "C"
type Clock struct {
GstObj
}
func (c *Clock) g() *C.GstClock {
return (*C.GstClock)(c.GetPtr())
}
func (c *Clock) AsClock() *Clock {
return c
}