Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/compositor/intern/COM_NodeOperation.h')
-rw-r--r--source/blender/compositor/intern/COM_NodeOperation.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/source/blender/compositor/intern/COM_NodeOperation.h b/source/blender/compositor/intern/COM_NodeOperation.h
index d7321fe8df8..3836268c63c 100644
--- a/source/blender/compositor/intern/COM_NodeOperation.h
+++ b/source/blender/compositor/intern/COM_NodeOperation.h
@@ -80,13 +80,9 @@ enum class PixelSampler {
* \ingroup Model
*/
class NodeOperation {
- public:
- typedef std::vector<NodeOperationInput *> Inputs;
- typedef std::vector<NodeOperationOutput *> Outputs;
-
private:
- Inputs m_inputs;
- Outputs m_outputs;
+ blender::Vector<NodeOperationInput *> m_inputs;
+ blender::Vector<NodeOperationOutput *> m_outputs;
/**
* \brief the index of the input socket that will be used to determine the resolution
@@ -162,7 +158,7 @@ class NodeOperation {
*/
bool isInputOperation() const
{
- return m_inputs.empty();
+ return m_inputs.is_empty();
}
/**
@@ -279,8 +275,6 @@ class NodeOperation {
}
}
- void getConnectedInputSockets(Inputs *sockets);
-
/**
* \brief is this operation complex
*