1 // Copyright 2014 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 #include "../../include/fpdfdoc/fpdf_doc.h" 8 #include "../../include/fpdfdoc/fpdf_vt.h" 9 #include "pdf_vt.h" NewVariableText()10IPDF_VariableText* IPDF_VariableText::NewVariableText() 11 { 12 return new CPDF_VariableText(); 13 } DelVariableText(IPDF_VariableText * pVT)14void IPDF_VariableText::DelVariableText(IPDF_VariableText* pVT) 15 { 16 delete (CPDF_VariableText*)pVT; 17 } 18