Index: xfa/fxbarcode/datamatrix/BC_DataMatrixWriter.h |
diff --git a/xfa/fxbarcode/datamatrix/BC_DataMatrixWriter.h b/xfa/fxbarcode/datamatrix/BC_DataMatrixWriter.h |
index 7c19a07c191c1624604c8e68dbb9116a67234692..1196e4635260fbff558af22a317ccca0a7b0e0c8 100644 |
--- a/xfa/fxbarcode/datamatrix/BC_DataMatrixWriter.h |
+++ b/xfa/fxbarcode/datamatrix/BC_DataMatrixWriter.h |
@@ -16,12 +16,15 @@ class CBC_SymbolInfo; |
class CBC_DataMatrixWriter : public CBC_TwoDimWriter { |
public: |
CBC_DataMatrixWriter(); |
- virtual ~CBC_DataMatrixWriter(); |
- uint8_t* Encode(const CFX_WideString& contents, |
- int32_t& outWidth, |
- int32_t& outHeight, |
- int32_t& e); |
- FX_BOOL SetErrorCorrectionLevel(int32_t level); |
+ ~CBC_DataMatrixWriter() override; |
+ |
+ virtual uint8_t* Encode(const CFX_WideString& contents, |
+ int32_t& outWidth, |
+ int32_t& outHeight, |
+ int32_t& e); |
+ |
+ // CBC_TwoDimWriter |
+ FX_BOOL SetErrorCorrectionLevel(int32_t level) override; |
private: |
static CBC_CommonByteMatrix* encodeLowLevel(CBC_DefaultPlacement* placement, |