Skip to content

Commit

Permalink
fix txth examples
Browse files Browse the repository at this point in the history
Signed-off-by: Timm Ruppert <[email protected]>
  • Loading branch information
TimmRuppert committed Nov 12, 2024
1 parent ca18808 commit e9519cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/example_txth_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// SPDX-License-Identifier: MPL-2.0
//

#include <osi-utilities/tracefile/reader/txthTraceFileReader.h>
#include <osi-utilities/tracefile/reader/TXTHTraceFileReader.h>

#include <optional>

Expand Down
4 changes: 2 additions & 2 deletions examples/example_txth_writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Copyright (c) 2024, Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
// SPDX-License-Identifier: MPL-2.0
//
#include <osi-utilities/tracefile/writer/txthTraceFileWriter.h>
#include <osi-utilities/tracefile/writer/TXTHTraceFileWriter.h>

#include <filesystem>

Expand All @@ -18,7 +18,7 @@ int main(int argc, const char** argv) {
std::cout << "Starting TXTH Writer example:" << std::endl;

// Create writer and open file
auto trace_file_writer = osi3::TxthTraceFileWriter();
auto trace_file_writer = osi3::TXTHTraceFileWriter();
const auto trace_file_path = GenerateTempFilePath();
std::cout << "Creating trace_file at " << trace_file_path << std::endl;
trace_file_writer.Open(trace_file_path);
Expand Down

0 comments on commit e9519cd

Please sign in to comment.