Coverage Report

Created: 2018-09-25 14:53

/src/mozilla-central/xpcom/io/nsIOUtil.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
#ifndef nsIOUtil_h__
8
#define nsIOUtil_h__
9
10
#define NS_IOUTIL_CID                                                \
11
{ 0xeb833911, 0x4f49, 0x4623,                                        \
12
    { 0x84, 0x5f, 0xe5, 0x8a, 0x8e, 0x6d, 0xe4, 0xc2 } }
13
14
15
#include "nsIIOUtil.h"
16
#include "mozilla/Attributes.h"
17
18
class nsIOUtil final : public nsIIOUtil
19
{
20
0
  ~nsIOUtil() {}
21
22
public:
23
  NS_DECL_THREADSAFE_ISUPPORTS
24
  NS_DECL_NSIIOUTIL
25
};
26
27
#endif /* nsIOUtil_h__ */