You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
846 B
46 lines
846 B
// Copyright 2016 PDFium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
|
|
|
|
#ifndef FXJS_CFX_KEYVALUE_H_
|
|
#define FXJS_CFX_KEYVALUE_H_
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
#include "core/fxcrt/fx_string.h"
|
|
|
|
class CFX_KeyValue;
|
|
|
|
class CFX_Value {
|
|
public:
|
|
enum class DataType : uint8_t {
|
|
NUMBER = 0,
|
|
BOOLEAN,
|
|
STRING,
|
|
OBJECT,
|
|
NULLOBJ
|
|
};
|
|
|
|
CFX_Value();
|
|
~CFX_Value();
|
|
|
|
DataType nType = DataType::NULLOBJ;
|
|
bool bData;
|
|
double dData;
|
|
ByteString sData;
|
|
std::vector<std::unique_ptr<CFX_KeyValue>> objData;
|
|
};
|
|
|
|
class CFX_KeyValue : public CFX_Value {
|
|
public:
|
|
CFX_KeyValue();
|
|
~CFX_KeyValue();
|
|
|
|
ByteString sKey;
|
|
};
|
|
|
|
#endif // FXJS_CFX_KEYVALUE_H_
|