RMS SDK for C++  0.2.1
A client library for using Microsoft RMS from Linux.
ClientAssertion.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 CLIENTASSERTION_H
10 #define CLIENTASSERTION_H
11 
12 #include "types.h"
13 
14 namespace rmsauth {
15 
17 {
18 public:
20  const String& clientId() const { return clientId_; }
21 
22 private:
23  String clientId_;
24 
25 };
26 
27 using ClientAssertionPtr = ptr<ClientAssertion>;
28 
29 } // namespace rmsauth {
30 
31 #endif // CLIENTASSERTION_H
Definition: ClientAssertion.h:16
Definition: AcquireTokenForClientHandler.h:14