Backed out changeset f53842753805 (bug 1804872) for causing reftest failures on 15535...
[gecko.git] / security / manager / ssl / PKCS11ModuleDB.h
blobc167afe4107802e3879a91a0707c4c0646742c93
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef PKCS11ModuleDB_h
7 #define PKCS11ModuleDB_h
9 #include "nsIPKCS11ModuleDB.h"
11 namespace mozilla {
12 namespace psm {
14 #define NS_PKCS11MODULEDB_CID \
15 { \
16 0xff9fbcd7, 0x9517, 0x4334, { \
17 0xb9, 0x7a, 0xce, 0xed, 0x78, 0x90, 0x99, 0x74 \
18 } \
21 class PKCS11ModuleDB : public nsIPKCS11ModuleDB {
22 public:
23 PKCS11ModuleDB() = default;
25 NS_DECL_ISUPPORTS
26 NS_DECL_NSIPKCS11MODULEDB
28 protected:
29 virtual ~PKCS11ModuleDB() = default;
32 } // namespace psm
33 } // namespace mozilla
35 #endif // PKCS11ModuleDB_h