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

COM_SocketProxyOperation.h « operations « compositor « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 613f9f49792ff9f1c9bf73a6891f1d93c155b377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2011 Blender Foundation. */

#pragma once

#include "COM_NodeOperation.h"

namespace blender::compositor {

class SocketProxyOperation : public NodeOperation {
 public:
  SocketProxyOperation(DataType type, bool use_conversion);

  std::unique_ptr<MetaData> get_meta_data() override;
};

}  // namespace blender::compositor