diff options
Diffstat (limited to 'core/src/Utils/fwd.hpp')
-rw-r--r-- | core/src/Utils/fwd.hpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/core/src/Utils/fwd.hpp b/core/src/Utils/fwd.hpp new file mode 100644 index 0000000..1949ca2 --- /dev/null +++ b/core/src/Utils/fwd.hpp @@ -0,0 +1,22 @@ +#pragma once
+
+#include "Dialog/fwd.hpp"
+
+// Sigslot.hpp
+class SignalStub;
+template <class... TArgs>
+class Signal;
+class SlotGuard;
+
+// I18n.hpp
+class I18n;
+struct StringArgument;
+struct IntArgument;
+struct FloatArgument;
+class BasicTranslation;
+class FormattedTranslation;
+class NumericTranslation;
+
+// String.hpp
+class Utf8Iterator;
+class Utf8IterableString;
|