op.hpp
1 // Copyright (C) 2018-2021 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4 
5 #pragma once
6 
7 #include <string>
8 
9 #include "ngraph/node.hpp"
10 
11 namespace ngraph
12 {
13  namespace op
14  {
15  /// Root of all actual ops
16  class NGRAPH_API Op : public Node
17  {
18  protected:
19  Op()
20  : Node()
21  {
22  }
23  Op(const OutputVector& arguments);
24  };
25  } // namespace op
26 } // namespace ngraph
Definition: node.hpp:127
Root of all actual ops.
Definition: op.hpp:17
The Intel nGraph C++ API.
Definition: attribute_adapter.hpp:16