Loading...
Searching...
No Matches
tsTest_Types.h
1//
2// Copyright 2024 Pixar
3//
4// Licensed under the terms set forth in the LICENSE.txt file available at
5// https://openusd.org/license.
6//
7
8#ifndef PXR_BASE_TS_TS_TEST_TYPES_H
9#define PXR_BASE_TS_TS_TEST_TYPES_H
10
11#include "pxr/pxr.h"
12#include "pxr/base/ts/api.h"
13
14#include <vector>
15
16PXR_NAMESPACE_OPEN_SCOPE
17
18class TsTest_Sample
19{
20public:
21 double time = 0;
22 double value = 0;
23
24public:
25 TsTest_Sample() = default;
26
27 TsTest_Sample(double timeIn, double valueIn)
28 : time(timeIn), value(valueIn) {}
29};
30
31using TsTest_SampleVec = std::vector<TsTest_Sample>;
32
33PXR_NAMESPACE_CLOSE_SCOPE
34
35#endif