C++/CLI Sample
Demonstrates how to create a C++/CLI library using the VideoXpert SDK
CPPCli::VxGlobal Class Reference

Provides global VxSDK methods. More...

#include <Utils.h>

Static Public Member Functions

static CPPCli::Results::Value SetLogLevel (CPPCli::LogLevel::Value logLevel)
 Sets the minimum severity level of messages to log. More...
 
static CPPCli::Results::Value SetLogPath (System::String^ logPath)
 Sets the output path for log files. More...
 

Detailed Description

Provides global VxSDK methods.

Definition at line 344 of file Utils.h.

Member Function Documentation

static CPPCli::Results::Value CPPCli::VxGlobal::SetLogLevel ( CPPCli::LogLevel::Value  logLevel)
inlinestatic

Sets the minimum severity level of messages to log.

Parameters
logLevelThe logging severity level.
Returns
The Result of setting the configuration.

Definition at line 351 of file Utils.h.

351  {
352  // Set the log level
354 
355  return CPPCli::Results::Value(result);
356  }
Value
Values that represent the result of calls to the VideoXpert system.
Definition: Utils.h:21
EXTERN_C VXAPI VxResult::Value VxSetLogLevel(VxLogLevel::Value logLevel)
static CPPCli::Results::Value CPPCli::VxGlobal::SetLogPath ( System::String^  logPath)
inlinestatic

Sets the output path for log files.

Parameters
logPathThe directory to store the generated log files.
Returns
The Result of setting the configuration.

Definition at line 363 of file Utils.h.

363  {
364  // Set the log path
366 
367  return CPPCli::Results::Value(result);
368  }
Value
Values that represent the result of calls to the VideoXpert system.
Definition: Utils.h:21
EXTERN_C VXAPI VxResult::Value VxSetLogPath(const char *logPath)
static const char * ConvertSysString(System::String^ sysString)
Convert a system string to a char.
Definition: Utils.h:233

The documentation for this class was generated from the following file: