For example
```
OIIOOutputDriver::~OIIOOutputDriver()
{
}
```
becomes
```
OIIOOutputDriver::~OIIOOutputDriver() {}
```
Saves quite some vertical space, which is especially handy for
constructors.
Pull Request: https://projects.blender.org/blender/blender/pulls/105594
22 lines
484 B
C++
22 lines
484 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright 2011 Blender Foundation. */
|
|
|
|
#pragma once
|
|
|
|
#include "COM_Node.h"
|
|
|
|
namespace blender::compositor {
|
|
|
|
/**
|
|
* \brief AlphaOverNode
|
|
* \ingroup Node
|
|
*/
|
|
class AlphaOverNode : public Node {
|
|
public:
|
|
AlphaOverNode(bNode *editor_node) : Node(editor_node) {}
|
|
void convert_to_operations(NodeConverter &converter,
|
|
const CompositorContext &context) const override;
|
|
};
|
|
|
|
} // namespace blender::compositor
|