From f4580a742e7a519cb39bc886a99a9a4eff7bf901 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Thu, 29 Jul 2021 23:40:43 -0500 Subject: [PATCH] [nostalgia] Add CLion config --- .idea/.gitignore | 8 +++++++ .idea/codeStyles/Project.xml | 22 ++++++++++++++++++ .idea/codeStyles/codeStyleConfig.xml | 5 ++++ .../fileTemplates/internal/C++ Class Header.h | 17 ++++++++++++++ .idea/fileTemplates/internal/C++ Class.cc | 13 +++++++++++ .idea/inspectionProfiles/Project_Default.xml | 23 +++++++++++++++++++ .idea/misc.xml | 17 ++++++++++++++ .idea/modules.xml | 8 +++++++ .idea/nostalgia.iml | 2 ++ .idea/vcs.xml | 6 +++++ 10 files changed, 121 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/codeStyles/Project.xml create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/fileTemplates/internal/C++ Class Header.h create mode 100644 .idea/fileTemplates/internal/C++ Class.cc create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/nostalgia.iml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..73f69e09 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 00000000..7224b0cc --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 00000000..fea906c2 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/fileTemplates/internal/C++ Class Header.h b/.idea/fileTemplates/internal/C++ Class Header.h new file mode 100644 index 00000000..7eb10bd8 --- /dev/null +++ b/.idea/fileTemplates/internal/C++ Class Header.h @@ -0,0 +1,17 @@ +/* + * Copyright 2016 - 2021 gary@drinkingtea.net + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#[[#pragma]]# once + +${NAMESPACES_OPEN} + +class ${NAME} { + +}; + +${NAMESPACES_CLOSE} \ No newline at end of file diff --git a/.idea/fileTemplates/internal/C++ Class.cc b/.idea/fileTemplates/internal/C++ Class.cc new file mode 100644 index 00000000..dab91b77 --- /dev/null +++ b/.idea/fileTemplates/internal/C++ Class.cc @@ -0,0 +1,13 @@ +/* + * Copyright 2016 - 2021 gary@drinkingtea.net + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#[[#include]]# "${HEADER_FILENAME}" + +${NAMESPACES_OPEN} + +${NAMESPACES_CLOSE} diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 00000000..100a9a6f --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,23 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..8067168a --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,17 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..0895f71e --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/nostalgia.iml b/.idea/nostalgia.iml new file mode 100644 index 00000000..0c8d6c6c --- /dev/null +++ b/.idea/nostalgia.iml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..94a25f7f --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file