Microsoft Information Protection (MIP) SDK for C++: Reference 1.15
Doxygen-generated documentation for MIP SDK written in C++
Loading...
Searching...
No Matches
roles Namespace Reference

Functions

std::string Author ()
 Gets string identifier for 'author' role.
 
std::string CoOwner ()
 Gets string identifier for 'co-owner' role.
 
std::string Reviewer ()
 Gets string identifier for 'reviewer' role.
 
std::string Viewer ()
 Gets string identifier for 'viewer' role.
 

Function Documentation

◆ Author()

std::string roles::Author ( )
inline

Gets string identifier for 'author' role.

Returns
String identifier for 'author' role
Note
An author can view, edit, copy, and print the content.

Definition at line 68 of file roles.h.

68{ return "AUTHOR"; }

◆ CoOwner()

std::string roles::CoOwner ( )
inline

Gets string identifier for 'co-owner' role.

Returns
String identifier for 'co-owner' role
Note
A co-owner has all permissions

Definition at line 77 of file roles.h.

77{ return "COOWNER"; }

◆ Reviewer()

std::string roles::Reviewer ( )
inline

Gets string identifier for 'reviewer' role.

Returns
String identifier for 'reviewer' role
Note
A reviewer can view and edit the content. They cannot copy, or print it.

Definition at line 59 of file roles.h.

59{ return "REVIEWER"; }

◆ Viewer()

std::string roles::Viewer ( )
inline

Gets string identifier for 'viewer' role.

Returns
String identifier for 'viewer' role
Note
A viewer can only view the content. They cannot edit, copy, or print it.

Definition at line 50 of file roles.h.

50{ return "VIEWER"; }