NVIDIA DeepLearning Dataset Synthesizer (NDDS)
 All Classes Namespaces Functions Variables Typedefs Pages
NVDataObjectModule.h
1 /*
2 * Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
3 *
4 * NVIDIA CORPORATION and its licensors retain all intellectual property
5 * and proprietary rights in and to this software, related documentation
6 * and any modifications thereto. Any use, reproduction, disclosure or
7 * distribution of this software and related documentation without an express
8 * license agreement from NVIDIA CORPORATION is strictly prohibited.
9 */
10 
11 #pragma once
12 
13 #include "CoreMinimal.h"
14 #include "ModuleManager.h"
15 
16 DECLARE_LOG_CATEGORY_EXTERN(LogNVDataObjectModule, Log, All)
17 
18 class INVDataObjectModule : public IModuleInterface
19 {
20 public:
21  /** IModuleInterface implementation */
22  void StartupModule();
23  void ShutdownModule();
24 };