1 // Copyright 2016 The PDFium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 6 7 #include "core/fpdfapi/page/cpdf_graphicstates.h" 8 9 CPDF_GraphicStates::CPDF_GraphicStates() = default; 10 11 CPDF_GraphicStates::~CPDF_GraphicStates() = default; 12 DefaultStates()13void CPDF_GraphicStates::DefaultStates() { 14 m_ColorState.Emplace(); 15 m_ColorState.SetDefault(); 16 } 17 CopyStates(const CPDF_GraphicStates & src)18void CPDF_GraphicStates::CopyStates(const CPDF_GraphicStates& src) { 19 m_ClipPath = src.m_ClipPath; 20 m_GraphState = src.m_GraphState; 21 m_ColorState = src.m_ColorState; 22 m_TextState = src.m_TextState; 23 m_GeneralState = src.m_GeneralState; 24 } 25