Coverage Report

Created: 2018-09-25 14:53

/src/mozilla-central/xpcom/base/nsVersionComparatorImpl.h
Line
Count
Source (jump to first uncovered line)
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
{
13
0
  ~nsVersionComparatorImpl() {}
14
15
public:
16
  NS_DECL_ISUPPORTS
17
  NS_DECL_NSIVERSIONCOMPARATOR
18
};
19
20
#define NS_VERSIONCOMPARATOR_CONTRACTID "@mozilla.org/xpcom/version-comparator;1"
21
22
// c6e47036-ca94-4be3-963a-9abd8705f7a8
23
#define NS_VERSIONCOMPARATOR_CID \
24
{ 0xc6e47036, 0xca94, 0x4be3, \
25
  { 0x96, 0x3a, 0x9a, 0xbd, 0x87, 0x05, 0xf7, 0xa8 } }