File indexing completed on 2024-12-22 04:09:14

0001 /* This file is part of the KDE project
0002  * SPDX-FileCopyrightText: 2006 Jan Hambrecht <jaham@gmx.net>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #ifndef KOPATHTOOLFACTORY_H
0008 #define KOPATHTOOLFACTORY_H
0009 
0010 #include <KoToolFactoryBase.h>
0011 
0012 /// Factory for the KoPathTool
0013 class KoPathToolFactory : public KoToolFactoryBase
0014 {
0015 public:
0016     KoPathToolFactory();
0017     ~KoPathToolFactory() override;
0018 
0019     KoToolBase *createTool(KoCanvasBase *canvas) override;
0020     QList<QAction *> createActionsImpl() override;
0021 };
0022 
0023 #endif