Give SignalType a default constructor that calls the default constructor of Type

This commit is contained in:
Inusaito Sayori
2013-07-31 02:53:51 -04:00
parent 9d47090852
commit 1c447a107e

View File

@@ -24,6 +24,7 @@ template<typename Type>
class SignaledType
{
public:
SignaledType() : mValue() {}
SignaledType(Type b) : mValue(b) {}
template<typename Slot>