You've already forked nodeeditor
mirror of
https://github.com/AxioDL/nodeeditor.git
synced 2026-03-30 11:48:31 -07:00
27 lines
314 B
C++
27 lines
314 B
C++
#pragma once
|
|
|
|
#include <QtCore/QString>
|
|
|
|
namespace QtNodes
|
|
{
|
|
|
|
class Style
|
|
{
|
|
public:
|
|
|
|
virtual ~Style() = default;
|
|
|
|
private:
|
|
|
|
virtual
|
|
void loadJsonText(QString jsonText) = 0;
|
|
|
|
virtual
|
|
void loadJsonFile(QString fileName) = 0;
|
|
|
|
virtual
|
|
void loadJsonFromByteArray(QByteArray const & byteArray) = 0;
|
|
};
|
|
|
|
}
|