2014-06-30 19:39:45 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2009-05-07 23:21:54 +04:00
|
|
|
|
|
|
|
#ifndef nsIOUtil_h__
|
|
|
|
#define nsIOUtil_h__
|
|
|
|
|
|
|
|
#define NS_IOUTIL_CID \
|
|
|
|
{ 0xeb833911, 0x4f49, 0x4623, \
|
|
|
|
{ 0x84, 0x5f, 0xe5, 0x8a, 0x8e, 0x6d, 0xe4, 0xc2 } }
|
|
|
|
|
|
|
|
|
|
|
|
#include "nsIIOUtil.h"
|
2012-06-06 03:51:58 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2009-05-07 23:21:54 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsIOUtil final : public nsIIOUtil
|
2009-05-07 23:21:54 +04:00
|
|
|
{
|
2014-07-01 02:11:53 +04:00
|
|
|
~nsIOUtil() {}
|
|
|
|
|
2009-05-07 23:21:54 +04:00
|
|
|
public:
|
2013-07-19 06:31:26 +04:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2009-05-07 23:21:54 +04:00
|
|
|
NS_DECL_NSIIOUTIL
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsIOUtil_h__ */
|