blob: 12b34fa7510d7360fd7ed014f00b4f4efdf72adf [file] [log] [blame]
kumarashishg826308d2023-06-23 13:21:22 +00001// Copyright 2017 The PDFium Authors
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -07002// 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 "fxjs/cjs_delaydata.h"
8
9CJS_DelayData::CJS_DelayData(FIELD_PROP prop, int idx, const WideString& name)
10 : eProp(prop), nControlIndex(idx), sFieldName(name) {}
11
kumarashishg826308d2023-06-23 13:21:22 +000012CJS_DelayData::~CJS_DelayData() = default;