1 // Copyright 2017 PDFium Authors. All rights reserved. 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 #ifndef XFA_FDE_CSS_CFDE_CSSCUSTOMPROPERTY_H_ 8 #define XFA_FDE_CSS_CFDE_CSSCUSTOMPROPERTY_H_ 9 10 #include "core/fxcrt/fx_string.h" 11 12 class CFDE_CSSCustomProperty { 13 public: 14 CFDE_CSSCustomProperty(const CFX_WideString& name, 15 const CFX_WideString& value); 16 CFDE_CSSCustomProperty(const CFDE_CSSCustomProperty& prop); 17 ~CFDE_CSSCustomProperty(); 18 name()19 CFX_WideString name() const { return name_; } value()20 CFX_WideString value() const { return value_; } 21 22 private: 23 CFX_WideString name_; 24 CFX_WideString value_; 25 }; 26 27 #endif // XFA_FDE_CSS_CFDE_CSSCUSTOMPROPERTY_H_ 28