13 lines
164 B
C++
13 lines
164 B
C++
//
|
|
// Created by acite on 5/1/24.
|
|
//
|
|
|
|
#ifndef ALDBG_LOG_H
|
|
#define ALDBG_LOG_H
|
|
|
|
#include <string>
|
|
|
|
void add_log_data(const std::string& data);
|
|
|
|
#endif //ALDBG_LOG_H
|