1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
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 
7 #include "mozilla/Attributes.h"
8 
9 #include "nsIVersionComparator.h"
10 
11 class nsVersionComparatorImpl final : public nsIVersionComparator {
12   ~nsVersionComparatorImpl() = default;
13 
14  public:
15   NS_DECL_ISUPPORTS
16   NS_DECL_NSIVERSIONCOMPARATOR
17 };
18 
19 #define NS_VERSIONCOMPARATOR_CONTRACTID \
20   "@mozilla.org/xpcom/version-comparator;1"
21 
22 // c6e47036-ca94-4be3-963a-9abd8705f7a8
23 #define NS_VERSIONCOMPARATOR_CID                     \
24   {                                                  \
25     0xc6e47036, 0xca94, 0x4be3, {                    \
26       0x96, 0x3a, 0x9a, 0xbd, 0x87, 0x05, 0xf7, 0xa8 \
27     }                                                \
28   }
29