From 69184f592bfcc1b25c2bbde795b9471d273b0bda Mon Sep 17 00:00:00 2001 From: TickNick Date: Thu, 11 May 2023 14:21:36 +0200 Subject: [PATCH] first checkpoint --- .vscode/settings.json | 47 +++++++++++++++++++++++++++++++++++++ TestMessage/Message.cpp | 20 +++++++++++++++- TestMessage/Message.h | 13 ++++++++-- TestMessage/TestMessage.cpp | 5 ++-- 4 files changed, 80 insertions(+), 5 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..2f0efed --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,47 @@ +{ + "files.associations": { + "array": "cpp", + "atomic": "cpp", + "bit": "cpp", + "*.tcc": "cpp", + "cctype": "cpp", + "clocale": "cpp", + "cmath": "cpp", + "compare": "cpp", + "concepts": "cpp", + "cstddef": "cpp", + "cstdint": "cpp", + "cstdio": "cpp", + "cstdlib": "cpp", + "cwchar": "cpp", + "cwctype": "cpp", + "deque": "cpp", + "string": "cpp", + "unordered_map": "cpp", + "vector": "cpp", + "exception": "cpp", + "algorithm": "cpp", + "functional": "cpp", + "iterator": "cpp", + "memory": "cpp", + "memory_resource": "cpp", + "numeric": "cpp", + "random": "cpp", + "string_view": "cpp", + "system_error": "cpp", + "tuple": "cpp", + "type_traits": "cpp", + "utility": "cpp", + "initializer_list": "cpp", + "iosfwd": "cpp", + "iostream": "cpp", + "istream": "cpp", + "limits": "cpp", + "new": "cpp", + "numbers": "cpp", + "ostream": "cpp", + "stdexcept": "cpp", + "streambuf": "cpp", + "typeinfo": "cpp" + } +} \ No newline at end of file diff --git a/TestMessage/Message.cpp b/TestMessage/Message.cpp index 837028c..723171d 100644 --- a/TestMessage/Message.cpp +++ b/TestMessage/Message.cpp @@ -5,7 +5,25 @@ void Message::printMessage() { - std::cout<