File indexing completed on 2024-05-19 04:26:56

0001 /*
0002  * SPDX-FileCopyrightText: 2018 Boudewijn Rempt <boud@valdyas.org>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #ifndef LIBKISUTILS_H
0008 #define LIBKISUTILS_H
0009 
0010 class Node;
0011 class Document;
0012 
0013 #include <kis_types.h>
0014 
0015 namespace LibKisUtils
0016 {
0017 
0018 QList<Node *> createNodeList(KisNodeList kisnodes, KisImageWSP image);
0019 
0020 Document* findNodeInDocuments(KisNodeSP kisnode);
0021 
0022 }
0023 
0024 #endif // LIBKISUTILS_H