Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1244)

Unified Diff: xfa/fxbarcode/cbc_codebase.cpp

Issue 2037573005: Clean up C-Style casts in CBC_CodeBase and subclasses (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « xfa/fxbarcode/cbc_codebase.h ('k') | xfa/fxbarcode/cbc_datamatrix.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/cbc_codebase.cpp
diff --git a/xfa/fxbarcode/cbc_codebase.cpp b/xfa/fxbarcode/cbc_codebase.cpp
index 64a358a038c701d8157236d051a91b2847c7b1ae..7065c2eaded44ef7454c212494001a33e8be9fcb 100644
--- a/xfa/fxbarcode/cbc_codebase.cpp
+++ b/xfa/fxbarcode/cbc_codebase.cpp
@@ -21,9 +21,11 @@
#include "xfa/fxbarcode/cbc_codebase.h"
+#include "xfa/fxbarcode/BC_Reader.h"
#include "xfa/fxbarcode/BC_Writer.h"
-CBC_CodeBase::CBC_CodeBase() {}
+CBC_CodeBase::CBC_CodeBase(CBC_Reader* pReader, CBC_Writer* pWriter)
+ : m_pBCReader(pReader), m_pBCWriter(pWriter) {}
CBC_CodeBase::~CBC_CodeBase() {}
« no previous file with comments | « xfa/fxbarcode/cbc_codebase.h ('k') | xfa/fxbarcode/cbc_datamatrix.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698