diff options
Diffstat (limited to 'fpdfsdk/pdfwindow/cpwl_pathdata.cpp')
-rw-r--r-- | fpdfsdk/pdfwindow/cpwl_pathdata.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/fpdfsdk/pdfwindow/cpwl_pathdata.cpp b/fpdfsdk/pdfwindow/cpwl_pathdata.cpp new file mode 100644 index 0000000000..64fcd90820 --- /dev/null +++ b/fpdfsdk/pdfwindow/cpwl_pathdata.cpp @@ -0,0 +1,16 @@ +// Copyright 2017 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 + +#include "fpdfsdk/pdfwindow/cpwl_pathdata.h" + +CPWL_PathData::CPWL_PathData() : point(), type(PWLPT_UNKNOWN) {} + +CPWL_PathData::CPWL_PathData(const CFX_PointF& pt, PWL_PATHDATA_TYPE tp) + : point(pt), type(tp) {} + +CPWL_PathData::CPWL_PathData(const CPWL_PathData&) = default; + +CPWL_PathData::~CPWL_PathData() = default; |