Skip to content

Commit 447e21c

Browse files
committed
initial commit with project files
1 parent eb1d74d commit 447e21c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+11219
-41
lines changed

.vscode/c_cpp_properties.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Linux",
5+
"includePath": [
6+
"${workspaceFolder}/**",
7+
"/usr/include/wx-3.0"
8+
],
9+
"defines": [],
10+
"compilerPath": "/usr/lib/ccache/gcc",
11+
"cStandard": "c17",
12+
"cppStandard": "gnu++17",
13+
"intelliSenseMode": "linux-gcc-x64"
14+
},
15+
{
16+
"name": "CppND_MMCB",
17+
"includePath": [
18+
"${workspaceFolder}/**"
19+
],
20+
"defines": [],
21+
"compilerPath": "/usr/lib/ccache/gcc",
22+
"cStandard": "c17",
23+
"cppStandard": "gnu++17",
24+
"intelliSenseMode": "linux-gcc-x64"
25+
}
26+
],
27+
"version": 4
28+
}

.vscode/launch.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": []
7+
}

.vscode/settings.json

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
{
2+
"C_Cpp.errorSquiggles": "disabled",
3+
"files.associations": {
4+
"cctype": "cpp",
5+
"clocale": "cpp",
6+
"cmath": "cpp",
7+
"cstdarg": "cpp",
8+
"cstddef": "cpp",
9+
"cstdio": "cpp",
10+
"cstdlib": "cpp",
11+
"cstring": "cpp",
12+
"ctime": "cpp",
13+
"cwchar": "cpp",
14+
"cwctype": "cpp",
15+
"array": "cpp",
16+
"atomic": "cpp",
17+
"hash_map": "cpp",
18+
"bit": "cpp",
19+
"*.tcc": "cpp",
20+
"chrono": "cpp",
21+
"compare": "cpp",
22+
"complex": "cpp",
23+
"concepts": "cpp",
24+
"condition_variable": "cpp",
25+
"cstdint": "cpp",
26+
"deque": "cpp",
27+
"forward_list": "cpp",
28+
"list": "cpp",
29+
"map": "cpp",
30+
"set": "cpp",
31+
"string": "cpp",
32+
"unordered_map": "cpp",
33+
"unordered_set": "cpp",
34+
"vector": "cpp",
35+
"exception": "cpp",
36+
"algorithm": "cpp",
37+
"functional": "cpp",
38+
"iterator": "cpp",
39+
"memory": "cpp",
40+
"memory_resource": "cpp",
41+
"numeric": "cpp",
42+
"optional": "cpp",
43+
"random": "cpp",
44+
"ratio": "cpp",
45+
"string_view": "cpp",
46+
"system_error": "cpp",
47+
"tuple": "cpp",
48+
"type_traits": "cpp",
49+
"utility": "cpp",
50+
"fstream": "cpp",
51+
"initializer_list": "cpp",
52+
"iomanip": "cpp",
53+
"iosfwd": "cpp",
54+
"iostream": "cpp",
55+
"istream": "cpp",
56+
"limits": "cpp",
57+
"mutex": "cpp",
58+
"new": "cpp",
59+
"numbers": "cpp",
60+
"ostream": "cpp",
61+
"semaphore": "cpp",
62+
"sstream": "cpp",
63+
"stdexcept": "cpp",
64+
"stop_token": "cpp",
65+
"streambuf": "cpp",
66+
"thread": "cpp",
67+
"cinttypes": "cpp",
68+
"typeindex": "cpp",
69+
"typeinfo": "cpp"
70+
}
71+
}

0 commit comments

Comments
 (0)