| 18 | namespace docopt { |
| 19 | |
| 20 | enum class Kind { |
| 21 | Empty, |
| 22 | Bool, |
| 23 | Long, |
| 24 | String, |
| 25 | StringList |
| 26 | }; |
| 27 | |
| 28 | /// A generic type to hold the various types that can be produced by docopt. |
| 29 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected