NVIDIA DeepStream SDK API Reference

8.0 Release
pad.hpp
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3  * SPDX-License-Identifier: LicenseRef-NvidiaProprietary
4  *
5  * NVIDIA CORPORATION, its affiliates and licensors retain all intellectual
6  * property and proprietary rights in and to this material, related
7  * documentation and any modifications thereto. Any use, reproduction,
8  * disclosure or distribution of this material and related documentation
9  * without an express license agreement from NVIDIA CORPORATION or
10  * its affiliates is strictly prohibited.
11  */
12 
18 #ifndef NVIDIA_DEEPSTREAM_PAD
19 #define NVIDIA_DEEPSTREAM_PAD
20 
21 #include "object.hpp"
22 
23 namespace deepstream {
24 
33 class Pad : public Object {
34 public:
36  Pad();
38  Pad(bool is_input, const std::string& name = std::string());
40  Pad(const Object&);
42  Pad(Object&&);
43 
44 };
45 }
46 
47 #endif
deepstream::Pad
Pad is an abstraction of the I/O with an Element,.
Definition: pad.hpp:33
deepstream
Definition: buffer.hpp:33
deepstream::Pad::Pad
Pad()
empty constructor
object.hpp
deepstream::Object
Base Object class.
Definition: object.hpp:44