Loading...
Searching...
No Matches
tsTest_Types.h
1//
2// Copyright 2023 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
18struct TS_API TsTest_Sample
19{
20 double time = 0;
21 double value = 0;
22
23public:
24 TsTest_Sample();
25 TsTest_Sample(double time, double value);
26 TsTest_Sample(const TsTest_Sample &other);
27 TsTest_Sample& operator=(const TsTest_Sample &other);
28};
29
30using TsTest_SampleVec = std::vector<TsTest_Sample>;
31
32PXR_NAMESPACE_CLOSE_SCOPE
33
34#endif