File indexing completed on 2024-04-28 04:37:25

0001 /*
0002     SPDX-FileCopyrightText: 2004 Alexander Dymo <adymo@kdevelop.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "shellextension.h"
0008 
0009 namespace KDevelop
0010 {
0011 ShellExtension *ShellExtension::s_instance = nullptr;
0012 
0013 ShellExtension::ShellExtension()
0014 {
0015 }
0016 
0017 ShellExtension *ShellExtension::getInstance()
0018 {
0019     return s_instance;
0020 }
0021 
0022 }