From c02ff61b2107e209f726efd13ad0e29c0eecf72e Mon Sep 17 00:00:00 2001 From: Gregory Lee Date: Wed, 13 Dec 2023 12:45:13 -0500 Subject: [PATCH] remove .idea folder This folder contains configuration for the CLion IDE. It is not tested or maintained and current devs are not using it, so we will remove it from the repository. --- .idea/.gitignore | 8 -------- .idea/codeStyles/Project.xml | 7 ------- .idea/codeStyles/codeStyleConfig.xml | 5 ----- .idea/cucim.iml | 2 -- .../includes/NVIDIA_CMAKE_HEADER.cmake | 14 -------------- .idea/fileTemplates/includes/NVIDIA_C_HEADER.h | 15 --------------- .idea/fileTemplates/internal/C Header File.h | 5 ----- .idea/fileTemplates/internal/C Source File.c | 4 ---- .idea/fileTemplates/internal/C++ Class Header.h | 13 ------------- .idea/fileTemplates/internal/C++ Class.cc | 2 -- .idea/fileTemplates/internal/CMakeLists.txt.cmake | 1 - .idea/misc.xml | 7 ------- .idea/vcs.xml | 6 ------ 13 files changed, 89 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/codeStyles/Project.xml delete mode 100644 .idea/codeStyles/codeStyleConfig.xml delete mode 100644 .idea/cucim.iml delete mode 100644 .idea/fileTemplates/includes/NVIDIA_CMAKE_HEADER.cmake delete mode 100644 .idea/fileTemplates/includes/NVIDIA_C_HEADER.h delete mode 100644 .idea/fileTemplates/internal/C Header File.h delete mode 100644 .idea/fileTemplates/internal/C Source File.c delete mode 100644 .idea/fileTemplates/internal/C++ Class Header.h delete mode 100644 .idea/fileTemplates/internal/C++ Class.cc delete mode 100644 .idea/fileTemplates/internal/CMakeLists.txt.cmake delete mode 100644 .idea/misc.xml delete mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 73f69e095..000000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# 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 deleted file mode 100644 index c8f84c353..000000000 --- a/.idea/codeStyles/Project.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml deleted file mode 100644 index 0f7bc519d..000000000 --- a/.idea/codeStyles/codeStyleConfig.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - diff --git a/.idea/cucim.iml b/.idea/cucim.iml deleted file mode 100644 index 08cda128a..000000000 --- a/.idea/cucim.iml +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/.idea/fileTemplates/includes/NVIDIA_CMAKE_HEADER.cmake b/.idea/fileTemplates/includes/NVIDIA_CMAKE_HEADER.cmake deleted file mode 100644 index 7272e0dec..000000000 --- a/.idea/fileTemplates/includes/NVIDIA_CMAKE_HEADER.cmake +++ /dev/null @@ -1,14 +0,0 @@ -# -# Copyright (c) $YEAR, NVIDIA CORPORATION. -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# diff --git a/.idea/fileTemplates/includes/NVIDIA_C_HEADER.h b/.idea/fileTemplates/includes/NVIDIA_C_HEADER.h deleted file mode 100644 index cf0461d4c..000000000 --- a/.idea/fileTemplates/includes/NVIDIA_C_HEADER.h +++ /dev/null @@ -1,15 +0,0 @@ -/* - * Copyright (c) $YEAR, NVIDIA CORPORATION. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ diff --git a/.idea/fileTemplates/internal/C Header File.h b/.idea/fileTemplates/internal/C Header File.h deleted file mode 100644 index 9cb1d09e2..000000000 --- a/.idea/fileTemplates/internal/C Header File.h +++ /dev/null @@ -1,5 +0,0 @@ -#parse("NVIDIA_C_HEADER.h") -#[[#ifndef]]# ${INCLUDE_GUARD} -#[[#define]]# ${INCLUDE_GUARD} - -#[[#endif]]# //${INCLUDE_GUARD} diff --git a/.idea/fileTemplates/internal/C Source File.c b/.idea/fileTemplates/internal/C Source File.c deleted file mode 100644 index b04dd6c62..000000000 --- a/.idea/fileTemplates/internal/C Source File.c +++ /dev/null @@ -1,4 +0,0 @@ -#parse("NVIDIA_C_HEADER.h") -#if (${HEADER_FILENAME}) -#[[#include]]# "${HEADER_FILENAME}" -#end diff --git a/.idea/fileTemplates/internal/C++ Class Header.h b/.idea/fileTemplates/internal/C++ Class Header.h deleted file mode 100644 index f521fa555..000000000 --- a/.idea/fileTemplates/internal/C++ Class Header.h +++ /dev/null @@ -1,13 +0,0 @@ -#parse("NVIDIA_C_HEADER.h") -#[[#ifndef]]# ${INCLUDE_GUARD} -#[[#define]]# ${INCLUDE_GUARD} - -${NAMESPACES_OPEN} - -class ${NAME} { - -}; - -${NAMESPACES_CLOSE} - -#[[#endif]]# //${INCLUDE_GUARD} diff --git a/.idea/fileTemplates/internal/C++ Class.cc b/.idea/fileTemplates/internal/C++ Class.cc deleted file mode 100644 index 42f43ccf4..000000000 --- a/.idea/fileTemplates/internal/C++ Class.cc +++ /dev/null @@ -1,2 +0,0 @@ -#parse("NVIDIA_C_HEADER.h") -#[[#include]]# "${HEADER_FILENAME}" diff --git a/.idea/fileTemplates/internal/CMakeLists.txt.cmake b/.idea/fileTemplates/internal/CMakeLists.txt.cmake deleted file mode 100644 index 846356219..000000000 --- a/.idea/fileTemplates/internal/CMakeLists.txt.cmake +++ /dev/null @@ -1 +0,0 @@ -#parse("NVIDIA_CMAKE_HEADER.cmake") diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 2019083a1..000000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 5ace414d8..000000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - -