-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.cpp
More file actions
43 lines (37 loc) · 1.32 KB
/
main.cpp
File metadata and controls
43 lines (37 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include "include/impl/impl_common.h"
#include "examples/examples_base64.h"
#include "examples/examples_buffer.h"
#include "examples/examples_event.h"
#include "examples/examples_hash.h"
#include "examples/examples_jobs_engine.h"
#include "examples/examples_lock_queue.h"
#include "examples/examples_lru_cache.h"
#include "examples/examples_prio_queue.h"
#include "examples/examples_spinlock.h"
#include "examples/examples_stack_string.h"
#include "examples/examples_time_queue.h"
#include "examples/examples_util.h"
#include "examples/examples_util_timeout.h"
#include "examples/examples_worker_threads.h"
int main()
{
std::cout << "Hello. Here are the default small cpp utils examples\n\n";
examples::spinlock::Example1();
examples::hash::Example1();
examples::base64::Example1();
examples::util::Example1();
examples::utiltimeout::Example1();
examples::utiltimeout::Example2();
examples::buffer::Example1();
examples::stack_string::Example1();
examples::event::Example1();
examples::lock_queue::Example1();
examples::time_queue::Example1();
examples::prio_queue::Example1();
examples::lru_cache::Example1();
examples::worker_thread::Example1();
examples::worker_thread::Example2();
examples::worker_thread::Example3_Perf();
examples::jobs_engine::Example1();
return 0;
}