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/operations/COM_CurveBaseOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_CurveBaseOperation.h29
1 files changed, 15 insertions, 14 deletions
diff --git a/source/blender/compositor/operations/COM_CurveBaseOperation.h b/source/blender/compositor/operations/COM_CurveBaseOperation.h
index 71d5e4a67da..f42ce3c366f 100644
--- a/source/blender/compositor/operations/COM_CurveBaseOperation.h
+++ b/source/blender/compositor/operations/COM_CurveBaseOperation.h
@@ -22,21 +22,22 @@
#include "DNA_color_types.h"
class CurveBaseOperation : public NodeOperation {
-protected:
- /**
- * Cached reference to the inputProgram
- */
- CurveMapping *m_curveMapping;
-public:
- CurveBaseOperation();
- ~CurveBaseOperation();
+ protected:
+ /**
+ * Cached reference to the inputProgram
+ */
+ CurveMapping *m_curveMapping;
- /**
- * Initialize the execution
- */
- void initExecution();
- void deinitExecution();
+ public:
+ CurveBaseOperation();
+ ~CurveBaseOperation();
- void setCurveMapping(CurveMapping *mapping);
+ /**
+ * Initialize the execution
+ */
+ void initExecution();
+ void deinitExecution();
+
+ void setCurveMapping(CurveMapping *mapping);
};
#endif