IncRefCountMethod returns the xml definition of the IncRefCount-method
()
| 1186 | |
| 1187 | // IncRefCountMethod returns the xml definition of the IncRefCount-method |
| 1188 | func IncRefCountMethod() (ComponentDefinitionMethod) { |
| 1189 | var method ComponentDefinitionMethod |
| 1190 | source := `<method name="IncRefCount" description = "Increases the reference count of a class instance"> |
| 1191 | </method>` |
| 1192 | xml.Unmarshal([]byte(source), &method) |
| 1193 | return method |
| 1194 | } |
| 1195 | |
| 1196 | // DecRefCountMethod returns the xml definition of the DecRefCount-method |
| 1197 | func DecRefCountMethod() (ComponentDefinitionMethod) { |
no outgoing calls
no test coverage detected