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