diff options
author | Lei Zhang <thestig@chromium.org> | 2015-11-06 15:53:26 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-11-06 15:53:26 -0800 |
commit | e6cab2252ee48212420b52735afa6346bb256e2c (patch) | |
tree | 1ffbed054fd1c73dd1da6cd3393b82665c21c6ff /xfa/src/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.h | |
parent | b4e7f304af0ad92d20f952e6634000d177974f47 (diff) | |
download | pdfium-e6cab2252ee48212420b52735afa6346bb256e2c.tar.xz |
XFA: Actually fix all relative includes to third_party.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1413253003 .
Diffstat (limited to 'xfa/src/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.h')
-rw-r--r-- | xfa/src/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/xfa/src/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.h b/xfa/src/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.h index f60d3eb929..6779f938d9 100644 --- a/xfa/src/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.h +++ b/xfa/src/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.h @@ -4,10 +4,15 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#ifndef _BC_DECODEDBITSTREAMPARSER_H_
-#define _BC_DECODEDBITSTREAMPARSER_H_
+#ifndef XFA_SRC_FXBARCODE_PDF417_BC_PDF417DECODEDBITSTREAMPARSER_H_
+#define XFA_SRC_FXBARCODE_PDF417_BC_PDF417DECODEDBITSTREAMPARSER_H_
+
+#include "core/include/fxcrt/fx_basic.h"
+#include "core/include/fxcrt/fx_string.h"
+
class CBC_CommonDecoderResult;
class CBC_PDF417ResultMetadata;
+
class CBC_DecodedBitStreamPaser {
public:
CBC_DecodedBitStreamPaser();
@@ -54,4 +59,4 @@ class CBC_DecodedBitStreamPaser { int32_t count,
int32_t& e);
};
-#endif
+#endif // XFA_SRC_FXBARCODE_PDF417_BC_PDF417DECODEDBITSTREAMPARSER_H_
|