Define HOLOSCAN_RESOURCE_FORWARD_ARGS_SUPER

HOLOSCAN_RESOURCE_FORWARD_ARGS_SUPER(class_name, super_class_name)

Forward the arguments to the super class.

This macro is used to forward the arguments of the constructor to the base class. It is used in the constructor of the resource class.

Use this macro if the class is derived from holoscan::Resource or the base class is derived from holoscan::Resource.

Example:

Copy
Copied!
            

class Allocator : public gxf::GXFResource { public: HOLOSCAN_RESOURCE_FORWARD_ARGS_SUPER(Allocator, GXFResource) Allocator() = default; const char* gxf_typename() const override { return "nvidia::gxf::Allocator"; } ... };

Parameters
  • class_name – The name of the class.

  • super_class_name – The name of the super class.

© Copyright 2022, NVIDIA. Last updated on Jun 28, 2023.