RMS SDK for C++  0.2.1
A client library for using Microsoft RMS from Linux.
TokenSubjectType.h
1 /*
2  * ======================================================================
3  * Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
4  * Licensed under the MIT License.
5  * See LICENSE.md in the project root for license information.
6  * ======================================================================
7 */
8 
9 #ifndef TOKENSUBJECTTYPE
10 #define TOKENSUBJECTTYPE
11 
12 #include "types.h"
13 
14 namespace rmsauth {
15 
16 enum class TokenSubjectType
17 {
18  User = 0,
19  Client,
20  UserPlusClient
21 };
22 
23 } // namespace rmsauth {
24 
25 #endif // TOKENSUBJECTTYPE
26 
Definition: AcquireTokenForClientHandler.h:14