Loading...
Searching...
No Matches
types.h
Go to the documentation of this file.
1//
2// Copyright 2016 Pixar
3//
4// Licensed under the terms set forth in the LICENSE.txt file available at
5// https://openusd.org/license.
6//
7#ifndef PXR_BASE_JS_TYPES_H
8#define PXR_BASE_JS_TYPES_H
9
11
12#include "pxr/pxr.h"
13
14#include <map>
15#include <string>
16#include <vector>
17
18PXR_NAMESPACE_OPEN_SCOPE
19
20class JsValue;
21typedef std::map<std::string, JsValue> JsObject;
22typedef std::vector<JsValue> JsArray;
23
24PXR_NAMESPACE_CLOSE_SCOPE
25
26#endif // PXR_BASE_JS_TYPES_H
A discriminated union type for JSON values.
Definition: value.h:47