(obj WaveObj)
| 70 | } |
| 71 | |
| 72 | func MakeUpdate(obj WaveObj) WaveObjUpdate { |
| 73 | return WaveObjUpdate{ |
| 74 | UpdateType: UpdateType_Update, |
| 75 | OType: obj.GetOType(), |
| 76 | OID: GetOID(obj), |
| 77 | Obj: obj, |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | func MakeUpdates(objs []WaveObj) []WaveObjUpdate { |
| 82 | rtn := make([]WaveObjUpdate, 0, len(objs)) |
no test coverage detected