//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

package cfg;


import "errors"

type TestShape struct {
}

const TypeId_TestShape = 637688613

func (*TestShape) GetTypeId() int32 {
    return 637688613
}

func NewTestShape(_buf map[string]interface{}) (interface{}, error) {
    var id string
    var _ok_ bool
    if id, _ok_ = _buf["$type"].(string) ; !_ok_ {
        return nil, errors.New("type id missing")
    }
    switch id {
        case "Circle": _v, err := NewTestCircle(_buf); if err != nil { return nil, errors.New("testcircle") } else { return _v, nil }
        case "test2.Rectangle": _v, err := NewTest2Rectangle(_buf); if err != nil { return nil, errors.New("test2rectangle") } else { return _v, nil }
        default: return nil, errors.New("unknown type id")
    }
}