tahoma2d/toonz/sources/tnztools/geometrictool.h

23 lines
338 B
C
Raw Normal View History

#pragma once
#ifndef GEOMETRICTOOL_H
#define GEOMETRICTOOL_H
#include <QCoreApplication>
class GeometricTool;
class GeometricToolNotifier final : public QObject {
Q_OBJECT
GeometricTool *m_tool;
public:
GeometricToolNotifier(GeometricTool *tool);
protected slots:
void onColorStyleChanged();
};
#endif // GEOMETRICTOOL_H