mirror of
https://github.com/c-sooyoung/fold_slice.git
synced 2026-09-17 22:39:08 +09:00
7 lines
129 B
C++
7 lines
129 B
C++
#include <fstream>
|
|
#include <memory>
|
|
|
|
namespace debug {
|
|
std::unique_ptr<std::ofstream> out; //!< pointer to debug log file
|
|
}
|