diff --git a/src/Detection/Runtime/Cpp.php b/src/Detection/Runtime/Cpp.php deleted file mode 100644 index 4ba388d..0000000 --- a/src/Detection/Runtime/Cpp.php +++ /dev/null @@ -1,47 +0,0 @@ - - */ - public function getLanguages(): array - { - return ['C++']; - } - - public function getCommands(): string - { - return 'g++ -o main.cpp && ./output'; - } - - /** - * @return array - */ - public function getFileExtensions(): array - { - return ['cpp', 'h', 'hpp', 'cxx', 'cc']; - } - - /** - * @return array - */ - public function getFiles(): array - { - return ['main.cpp', 'Solution', 'CMakeLists.txt']; - } - - public function getEntrypoint(): string - { - return ''; - } -}