equal
deleted
inserted
replaced
13 * |
13 * |
14 * Description: |
14 * Description: |
15 * |
15 * |
16 */ |
16 */ |
17 |
17 |
18 |
18 /** |
19 |
19 @file |
|
20 @publishedAll |
|
21 @released |
|
22 */ |
20 |
23 |
21 |
24 |
22 /** |
25 /** |
23 @file |
26 * |
24 @publishedAll |
27 * |
25 @released |
28 * @param aLeft |
26 |
29 * @param aRight |
27 |
30 * @return |
28 |
|
29 @param aLeft |
|
30 @param aRight |
|
31 @return |
|
32 |
|
33 */ |
31 */ |
34 inline TKeyUsagePKCS15 operator|(TKeyUsagePKCS15 aLeft, TKeyUsagePKCS15 aRight) |
32 inline TKeyUsagePKCS15 operator|(TKeyUsagePKCS15 aLeft, TKeyUsagePKCS15 aRight) |
35 { |
33 { |
36 return static_cast<TKeyUsagePKCS15>(static_cast<TUint>(aLeft) | static_cast<TUint>(aRight)); |
34 return static_cast<TKeyUsagePKCS15>(static_cast<TUint>(aLeft) | static_cast<TUint>(aRight)); |
37 } |
35 } |