diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-07 18:32:30 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-07 18:32:30 +0000 |
commit | 0dbaa90e9f6777c5d2203cd18dc565670d6271c0 (patch) | |
tree | ab0b61557afc5930a9313defdebdb1ff717fa532 /xfa/fxfa/parser/cxfa_arcdata.h | |
parent | 1b5eab3025b2b93a89261193167f613c0c924b32 (diff) | |
download | pdfium-0dbaa90e9f6777c5d2203cd18dc565670d6271c0.tar.xz |
Rename CXFA_Arc to CXFA_ArcData
This CL renames the CXFA_Arc class to make it clear it's part of the
data hierarchy.
Change-Id: Ia4cc276a2829db7ff11e778fe639b5c5656bf23e
Reviewed-on: https://pdfium-review.googlesource.com/17970
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_arcdata.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_arcdata.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/xfa/fxfa/parser/cxfa_arcdata.h b/xfa/fxfa/parser/cxfa_arcdata.h new file mode 100644 index 0000000000..60c32bad4e --- /dev/null +++ b/xfa/fxfa/parser/cxfa_arcdata.h @@ -0,0 +1,19 @@ +// Copyright 2016 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com + +#ifndef XFA_FXFA_PARSER_CXFA_ARCDATA_H_ +#define XFA_FXFA_PARSER_CXFA_ARCDATA_H_ + +#include "xfa/fxfa/parser/cxfa_box.h" + +class CXFA_Node; + +class CXFA_ArcData : public CXFA_Box { + public: + explicit CXFA_ArcData(CXFA_Node* pNode) : CXFA_Box(pNode) {} +}; + +#endif // XFA_FXFA_PARSER_CXFA_ARCDATA_H_ |