1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/security/manager/ssl/src/nsNSSVersion.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,27 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +#ifndef _NS_NSSVERSION_H_ 1.10 +#define _NS_NSSVERSION_H_ 1.11 + 1.12 +#include "nsINSSVersion.h" 1.13 +#include "mozilla/Attributes.h" 1.14 + 1.15 +class nsNSSVersion MOZ_FINAL : public nsINSSVersion 1.16 +{ 1.17 +public: 1.18 + NS_DECL_ISUPPORTS 1.19 + NS_DECL_NSINSSVERSION 1.20 + 1.21 + nsNSSVersion(); 1.22 + 1.23 +private: 1.24 + ~nsNSSVersion(); 1.25 +}; 1.26 + 1.27 +#define NS_NSSVERSION_CID \ 1.28 + { 0x23ad3531, 0x11d2, 0x4e8e, { 0x80, 0x5a, 0x6a, 0x75, 0x2e, 0x91, 0x68, 0x1a } } 1.29 + 1.30 +#endif