Coverage Report

Created: 2018-09-25 14:53

/src/mozilla-central/intl/locale/nsCollationFactory.h
Line
Count
Source (jump to first uncovered line)
1
2
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
3
 *
4
 * This Source Code Form is subject to the terms of the Mozilla Public
5
 * License, v. 2.0. If a copy of the MPL was not distributed with this
6
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7
#ifndef nsCollationFactory_h__
8
#define nsCollationFactory_h__
9
10
11
#include "nsICollation.h"
12
#include "nsCOMPtr.h"
13
#include "mozilla/Attributes.h"
14
15
// Create a collation interface for the current app's locale.
16
//
17
class nsCollationFactory final : public nsICollationFactory {
18
19
0
  ~nsCollationFactory() {}
20
21
public:
22
  NS_DECL_ISUPPORTS
23
  NS_DECL_NSICOLLATIONFACTORY
24
25
0
  nsCollationFactory() {}
26
};
27
28
#endif  /* nsCollationFactory_h__ */