File tree 7 files changed +135
-0
lines changed
Section12_Pointers_and_Reference
Section13_OOP-Classes_and_Objects
7 files changed +135
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "configurations" : [
3
+ {
4
+ "name" : " Mac" ,
5
+ "includePath" : [
6
+ " ${workspaceFolder}/**"
7
+ ],
8
+ "defines" : [],
9
+ "macFrameworkPath" : [
10
+ " /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
11
+ ],
12
+ "compilerPath" : " /usr/bin/g++" ,
13
+ "cStandard" : " gnu17" ,
14
+ "cppStandard" : " c++20" ,
15
+ "intelliSenseMode" : " macos-gcc-arm64"
16
+ }
17
+ ],
18
+ "version" : 4
19
+ }
Original file line number Diff line number Diff line change
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
+ {
8
+ "name" : " g++ - Build and debug active file" ,
9
+ "type" : " lldb" ,
10
+ "request" : " launch" ,
11
+ "program" : " ${fileDirname}/${fileBasenameNoExtension}" ,
12
+ "args" : [],
13
+ "cwd" : " ${fileDirname}" ,
14
+ "preLaunchTask" : " C/C++: g++ build active file"
15
+ }
16
+ ]
17
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "files.associations" : {
3
+ "ostream" : " cpp" ,
4
+ "vector" : " cpp" ,
5
+ "iostream" : " cpp" ,
6
+ "cstring" : " cpp" ,
7
+ "cctype" : " cpp" ,
8
+ "__bit_reference" : " cpp" ,
9
+ "__bits" : " cpp" ,
10
+ "__config" : " cpp" ,
11
+ "__debug" : " cpp" ,
12
+ "__errc" : " cpp" ,
13
+ "__functional_base" : " cpp" ,
14
+ "__hash_table" : " cpp" ,
15
+ "__locale" : " cpp" ,
16
+ "__mutex_base" : " cpp" ,
17
+ "__node_handle" : " cpp" ,
18
+ "__nullptr" : " cpp" ,
19
+ "__split_buffer" : " cpp" ,
20
+ "__string" : " cpp" ,
21
+ "__threading_support" : " cpp" ,
22
+ "__tree" : " cpp" ,
23
+ "__tuple" : " cpp" ,
24
+ "algorithm" : " cpp" ,
25
+ "array" : " cpp" ,
26
+ "atomic" : " cpp" ,
27
+ "bit" : " cpp" ,
28
+ "bitset" : " cpp" ,
29
+ "chrono" : " cpp" ,
30
+ "clocale" : " cpp" ,
31
+ "cmath" : " cpp" ,
32
+ "complex" : " cpp" ,
33
+ "cstdarg" : " cpp" ,
34
+ "cstddef" : " cpp" ,
35
+ "cstdint" : " cpp" ,
36
+ "cstdio" : " cpp" ,
37
+ "cstdlib" : " cpp" ,
38
+ "ctime" : " cpp" ,
39
+ "cwchar" : " cpp" ,
40
+ "cwctype" : " cpp" ,
41
+ "exception" : " cpp" ,
42
+ "functional" : " cpp" ,
43
+ "initializer_list" : " cpp" ,
44
+ "iomanip" : " cpp" ,
45
+ "ios" : " cpp" ,
46
+ "iosfwd" : " cpp" ,
47
+ "istream" : " cpp" ,
48
+ "iterator" : " cpp" ,
49
+ "limits" : " cpp" ,
50
+ "locale" : " cpp" ,
51
+ "memory" : " cpp" ,
52
+ "mutex" : " cpp" ,
53
+ "new" : " cpp" ,
54
+ "optional" : " cpp" ,
55
+ "ratio" : " cpp" ,
56
+ "set" : " cpp" ,
57
+ "sstream" : " cpp" ,
58
+ "stdexcept" : " cpp" ,
59
+ "streambuf" : " cpp" ,
60
+ "string" : " cpp" ,
61
+ "string_view" : " cpp" ,
62
+ "system_error" : " cpp" ,
63
+ "tuple" : " cpp" ,
64
+ "type_traits" : " cpp" ,
65
+ "typeinfo" : " cpp" ,
66
+ "unordered_map" : " cpp" ,
67
+ "utility" : " cpp"
68
+ }
69
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 2.0.0" ,
3
+ "tasks" : [
4
+ {
5
+ "type" : " cppbuild" ,
6
+ "label" : " C/C++: g++ build active file" ,
7
+ "command" : " /usr/bin/g++" ,
8
+ "args" : [
9
+ " -fdiagnostics-color=always" ,
10
+ " -g" ,
11
+ " -Wall" ,
12
+ " -std=c++20" ,
13
+ " ${fileDirname}/*.cpp" ,
14
+ " -o" ,
15
+ " ${fileDirname}/${fileBasenameNoExtension}"
16
+ ],
17
+ "options" : {
18
+ "cwd" : " ${fileDirname}"
19
+ },
20
+ "problemMatcher" : [
21
+ " $gcc"
22
+ ],
23
+ "group" : {
24
+ "kind" : " build" ,
25
+ "isDefault" : true
26
+ },
27
+ "detail" : " compiler: /usr/bin/g++"
28
+ }
29
+ ]
30
+ }
You can’t perform that action at this time.
0 commit comments