Home | History | Annotate | Download | only in fpdfdoc
      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"
     10 IPDF_VariableText* IPDF_VariableText::NewVariableText()
     11 {
     12     return FX_NEW CPDF_VariableText();
     13 }
     14 void IPDF_VariableText::DelVariableText(IPDF_VariableText* pVT)
     15 {
     16     delete (CPDF_VariableText*)pVT;
     17 }
     18