1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef CMAJOR_SYMBOLS_TRACE_INCLUDED
 7 #define CMAJOR_SYMBOLS_TRACE_INCLUDED
 8 #include <cmajor/symbols/SymbolsApi.hpp>
 9 #include <string>
10 #include <stdint.h>
11 
12 namespace cmajor { namespace symbols {
13 
14 int32_t GetTraceFunctionId(const std::string& functionFullName);
15 void ReadTraceTable();
16 void WriteTraceTable();
17 
18 } } // namespace cmajor::symbols
19 
20 #endif // CMAJOR_SYMBOLS_TRACE_INCLUDED