Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Use this enumeration when calling functions such as PermissionsAccessCheck 

Example

Code Block
 void MyComponent::UpdateSettings(const Settings &newSettings)
{
	if ( PermissionsAccessCheck(MY_PERMISSIONS_OBJECT_UUID, PERMISSION_MODIFY, currentLoggedInUser, 0) )
	{
		m_componentSettings = newSettings;
	}
}