Warning, file /graphics/washipad/src/strokepainter.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // This file is part of Washi Pad
0002 // SPDX-FileCopyrightText: 2018 Kevin Ottens <ervin@kde.org>
0003 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0004 
0005 #ifndef STROKEPAINTER_H
0006 #define STROKEPAINTER_H
0007 
0008 class QPainter;
0009 class Stroke;
0010 
0011 namespace StrokePainter
0012 {
0013     void render(const Stroke &stroke, QPainter *painter);
0014 };
0015 
0016 #endif // STROKEPAINTER_H