• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright © 2022 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include "CounterValue.hpp"
9 
10 namespace arm
11 {
12 
13 namespace pipe
14 {
15 
16 struct Timestamp
17 {
18     uint64_t timestamp;
19     std::vector<CounterValue> counterValues;
20 };
21 
22 }    // namespace pipe
23 
24 }    // namespace arm
25