| 32 | class DsqlCompilerScratch; |
| 33 | |
| 34 | class DSqlDataTypeUtil : public DataTypeUtilBase |
| 35 | { |
| 36 | public: |
| 37 | explicit DSqlDataTypeUtil(DsqlCompilerScratch* aDsqlScratch) |
| 38 | : dsqlScratch(aDsqlScratch) |
| 39 | { |
| 40 | } |
| 41 | |
| 42 | public: |
| 43 | virtual UCHAR maxBytesPerChar(UCHAR charSet); |
| 44 | virtual USHORT getDialect() const; |
| 45 | |
| 46 | private: |
| 47 | DsqlCompilerScratch* dsqlScratch; |
| 48 | }; |
| 49 | |
| 50 | } // namespace |
| 51 |
no outgoing calls
no test coverage detected