Simple converter using templates and streams to effectively required for the flexibility of handling native types
| 74 | |
| 75 | ///Simple converter using templates and streams to effectively required for the flexibility of handling native types |
| 76 | class Converters |
| 77 | { |
| 78 | public: |
| 79 | template <typename T, typename U> |
| 80 | static T Convert(U value); |
| 81 | template <typename T> |
| 82 | static size_t GetDataSize(T& value); |
| 83 | static size_t GetDataSize(fini_string_t value); |
| 84 | }; |
| 85 | |
| 86 | /// |
| 87 | template <typename T = fini_string_t, typename U = fini_string_t, typename V = fini_string_t> |
nothing calls this directly
no outgoing calls
no test coverage detected