omni/structuredlog/IStructuredLogFromILog.h
File members: omni/structuredlog/IStructuredLogFromILog.h
// Copyright (c) 2021-2023, NVIDIA CORPORATION. All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto. Any use, reproduction, disclosure or
// distribution of this software and related documentation without an express
// license agreement from NVIDIA CORPORATION is strictly prohibited.
//
#pragma once
#include "StructuredLogCommon.h"
#include "../core/IObject.h"
namespace omni
{
namespace structuredlog
{
class IStructuredLogFromILog;
// ****************************** IStructuredLogFromILog interface ********************************
class IStructuredLogFromILog_abi
: public omni::core::Inherits<omni::core::IObject, OMNI_TYPE_ID("omni.structuredlog.IStructuredLogFromILog")>
{
protected:
// ****** structured logging functions ******
virtual void enableLogging_abi() noexcept = 0;
virtual void disableLogging_abi() noexcept = 0;
virtual EventId getLoggingEventId_abi() noexcept = 0;
};
} // namespace structuredlog
} // namespace omni
#define OMNI_BIND_INCLUDE_INTERFACE_DECL
#include "IStructuredLogFromILog.gen.h"
class omni::structuredlog::IStructuredLogFromILog
: public omni::core::Generated<omni::structuredlog::IStructuredLogFromILog_abi>
{
};
#define OMNI_BIND_INCLUDE_INTERFACE_IMPL
#include "IStructuredLogFromILog.gen.h"