diff options
author | rtk0c <[email protected]> | 2021-05-12 13:23:56 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-05-12 13:34:43 -0700 |
commit | 765df313e065f8401319c68ba70cd41b0bc34c9d (patch) | |
tree | 44e0c781ed9f5ea0f98ac906e96c677d04befa27 /core/src/Utils/fwd.hpp | |
parent | 6ec8cc216282396ece535941ea6ca4a63d924e8f (diff) |
Start to work on actually rendering the node graph
Diffstat (limited to 'core/src/Utils/fwd.hpp')
-rw-r--r-- | core/src/Utils/fwd.hpp | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/core/src/Utils/fwd.hpp b/core/src/Utils/fwd.hpp index 58b2991..74e642d 100644 --- a/core/src/Utils/fwd.hpp +++ b/core/src/Utils/fwd.hpp @@ -1,10 +1,8 @@ #pragma once -// Sigslot.hpp -class SignalStub; -template <class... TArgs> -class Signal; -class SlotGuard; +// Color.hpp +class RgbaColor; +class HsvColor; // I18n.hpp class I18n; @@ -15,6 +13,12 @@ class BasicTranslation; class FormattedTranslation; class NumericTranslation; +// Sigslot.hpp +class SignalStub; +template <class... TArgs> +class Signal; +class SlotGuard; + // String.hpp class Utf8Iterator; class Utf8IterableString; |