imdl_i18n_configuration.h File Reference
Description
API component for MDL internationalization settings.
Code Example
imdl_i18n_configuration.h
/***************************************************************************************************
* Copyright 2024 NVIDIA Corporation. All rights reserved.
**************************************************************************************************/
#ifndef MI_NEURAYLIB_IMDL_I18N_CONFIGURATION_H
#define MI_NEURAYLIB_IMDL_I18N_CONFIGURATION_H
#include <mi/base/interface_declare.h>
namespace mi {
namespace neuraylib {
class IMdl_i18n_configuration : public
mi::base::Interface_declare<0xb28d4381,0x5760,0x4c1a,0xbe,0xa1,0x3f,0xa7,0x96,0x8a,0x86,0x28>
{
public:
virtual Sint32
set_locale( const char* locale) = 0;
virtual const char* get_locale() const = 0;
virtual const char* get_system_locale() const = 0;
virtual const char* get_system_keyword() const = 0;
};
// end group mi_neuray_configuration
} // namespace neuraylib
} // namespace mi
#endif // MI_NEURAYLIB_IMDL_I18N_CONFIGURATION_H
Namespaces
- namespace
- Common namespace for APIs of NVIDIA Advanced Rendering Center GmbH. More...
- namespace
- Namespace for the neuray API. More...
Classes
- class
- This interface is used to query and change MDL internationalization settings. More...