You've already forked nodeeditor
mirror of
https://github.com/AxioDL/nodeeditor.git
synced 2026-03-30 11:48:31 -07:00
ddfdaa947d
* Update CMakeLists.txt to modern practices * Add CMake installs() restructure include/ src/ to accomodate it
23 lines
291 B
C++
23 lines
291 B
C++
#pragma once
|
|
|
|
#include <QtCore/QString>
|
|
|
|
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;
|
|
};
|