ReportMethod is the interface for all kinds of report methods.
| 47 | |
| 48 | // ReportMethod is the interface for all kinds of report methods. |
| 49 | type ReportMethod interface { |
| 50 | Enum() ReportPolicy |
| 51 | Set(int) |
| 52 | Get() string |
| 53 | clear() |
| 54 | } |
| 55 | |
| 56 | // Sum report methods. |
| 57 | type Sum struct { |
no outgoing calls
no test coverage detected