summaryrefslogtreecommitdiff
path: root/fxbarcode/cbc_ean8.h
diff options
context:
space:
mode:
Diffstat (limited to 'fxbarcode/cbc_ean8.h')
-rw-r--r--fxbarcode/cbc_ean8.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/fxbarcode/cbc_ean8.h b/fxbarcode/cbc_ean8.h
index 7ddd2dea8b..d0f6ff8965 100644
--- a/fxbarcode/cbc_ean8.h
+++ b/fxbarcode/cbc_ean8.h
@@ -12,21 +12,21 @@
#include "core/fxge/fx_dib.h"
#include "fxbarcode/cbc_onecode.h"
+class CBC_OnedEAN8Writer;
+
class CBC_EAN8 : public CBC_OneCode {
public:
CBC_EAN8();
~CBC_EAN8() override;
// CBC_OneCode:
- bool Encode(const CFX_WideStringC& contents,
- bool isDevice,
- int32_t& e) override;
+ bool Encode(const CFX_WideStringC& contents, bool isDevice) override;
bool RenderDevice(CFX_RenderDevice* device,
- const CFX_Matrix* matrix,
- int32_t& e) override;
+ const CFX_Matrix* matrix) override;
BC_TYPE GetType() override;
private:
+ CBC_OnedEAN8Writer* GetOnedEAN8Writer();
CFX_WideString Preprocess(const CFX_WideStringC& contents);
CFX_WideString m_renderContents;
};