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

The NewNotification class represents a new notification. More...

#include <NewNotification.h>

Public Member Functions

 NewNotification ()
 Default constructor. More...
 
 NewNotification (VxSdk::VxNewNotification *vxNewNotification)
 Constructor. More...
 

Package Attributes

VxSdk::VxNewNotification_newNotification
 
System::Collections::Generic::List< Role^ >^ _roles
 

Properties

System::Collections::Generic::List< Role^ >^ Roles [get, set]
 Gets or sets the roles that should receive this notification. More...
 

Detailed Description

The NewNotification class represents a new notification.

Definition at line 12 of file NewNotification.h.

Constructor & Destructor Documentation

CPPCli::NewNotification::NewNotification ( )
inline

Default constructor.

Definition at line 18 of file NewNotification.h.

18  {
20  _roles = gcnew System::Collections::Generic::List<Role^>();
21  }
System::Collections::Generic::List< Role^ >^ _roles
VxSdk::VxNewNotification * _newNotification
CPPCli::NewNotification::NewNotification ( VxSdk::VxNewNotification vxNewNotification)
inline

Constructor.

Parameters
vxNewNotificationThe new notification.

Definition at line 27 of file NewNotification.h.

27  {
28  _newNotification = vxNewNotification;
29  _roles = gcnew System::Collections::Generic::List<Role^>();
30  }
System::Collections::Generic::List< Role^ >^ _roles
VxSdk::VxNewNotification * _newNotification

Member Data Documentation

VxSdk::VxNewNotification* CPPCli::NewNotification::_newNotification
package

Definition at line 43 of file NewNotification.h.

System::Collections::Generic::List<Role^> ^ CPPCli::NewNotification::_roles
package

Definition at line 44 of file NewNotification.h.

Property Documentation

System:: Collections:: Generic:: List< Role^>^ CPPCli::NewNotification::Roles
getset

Gets or sets the roles that should receive this notification.

A List of role ids.

Definition at line 36 of file NewNotification.h.


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