q5/xobject.go
aozhiwei 924eed81d1 1
2020-08-27 20:03:26 +08:00

17 lines
187 B
Go

package q5
const (
XOT_SIMPLE = 0
XOT_ARRAY = iota
XOT_OBJECT = iota
)
type XObject struct {
_type int8
_val interface{}
}
func (this *XObject) AsXValue() *XValue {
return nil
}