nodevalue: implement extra constructor overrides

This commit is contained in:
itsmattkc
2022-07-17 14:38:48 -07:00
parent d262b5c802
commit 9662822a2e
2 changed files with 20 additions and 1 deletions
+1 -1
View File
@@ -294,7 +294,7 @@ void Footage::Value(const NodeValueRow &value, const NodeGlobals &globals, NodeV
type = NodeValue::kSamples;
}
table->Push(type, QVariant::fromValue(job), this, false, ref.ToString());
table->Push(type, QVariant::fromValue(job), this, ref.ToString());
}
}
}
+19
View File
@@ -208,6 +208,12 @@ public:
set_value(data);
}
template <typename T>
NodeValue(Type type, const T& data, const Node* from, const QString& tag) :
NodeValue(type, data, from, false, tag)
{
}
Type type() const
{
return type_;
@@ -331,6 +337,7 @@ public:
QVector3D toVec3() const { return value<QVector3D>(); }
QVector4D toVec4() const { return value<QVector4D>(); }
Bezier toBezier() const { return value<Bezier>(); }
QVector<NodeValue> toArray() const { return value<QVector<NodeValue> >(); }
private:
Type type_;
@@ -378,6 +385,12 @@ public:
Push(NodeValue(type, data, from, array, tag));
}
template <typename T>
void Push(NodeValue::Type type, const T& data, const Node *from, const QString& tag)
{
Push(NodeValue(type, data, from, false, tag));
}
void Prepend(const NodeValue& value)
{
values_.prepend(value);
@@ -389,6 +402,12 @@ public:
Prepend(NodeValue(type, data, from, array, tag));
}
template <typename T>
void Prepend(NodeValue::Type type, const T& data, const Node *from, const QString& tag)
{
Prepend(NodeValue(type, data, from, false, tag));
}
const NodeValue& at(int index) const
{
return values_.at(index);