libcwdversion 2.0.0
The C++ Debugging Support Library
Loading...
Searching...
No Matches
init_functions.h
1#pragma once
2
3#include <string>
4
5// This file declares the debug::init and debug::init_thread functions
6// of the pre- libcwd-2 cwds git submodule.
7
8namespace libcwd::init_functions {
9
10enum thread_init_t
11{
12 thread_init_default,
13 from_rcfile,
14 copy_from_main,
15 debug_off
16};
17
18void init();
19void init_thread(std::string thread_name = "", thread_init_t thread_init = thread_init_default);
20
21} // libcwd::init_functions
22
23namespace libcwd {
24using namespace init_functions;
25} // namespace libcwd
namespace for libcwd.