2008-01-12 20:15:20 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 04:12:37 -07: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/. */
|
2008-01-12 20:15:20 -08:00
|
|
|
|
2015-05-14 20:52:05 -07:00
|
|
|
#ifndef mozilla_image_imgITools_h
|
|
|
|
#define mozilla_image_imgITools_h
|
2015-04-02 13:41:00 -07:00
|
|
|
|
2008-01-12 20:15:20 -08:00
|
|
|
#include "imgITools.h"
|
2013-09-07 06:01:08 -07:00
|
|
|
|
2008-01-12 20:15:20 -08:00
|
|
|
#define NS_IMGTOOLS_CID \
|
2014-02-24 16:51:45 -08:00
|
|
|
{ /* 3d8fa16d-c9e1-4b50-bdef-2c7ae249967a */ \
|
|
|
|
0x3d8fa16d, \
|
|
|
|
0xc9e1, \
|
|
|
|
0x4b50, \
|
|
|
|
{0xbd, 0xef, 0x2c, 0x7a, 0xe2, 0x49, 0x96, 0x7a} \
|
2008-01-12 20:15:20 -08:00
|
|
|
}
|
|
|
|
|
2015-09-03 14:00:00 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace image {
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
class imgTools final : public imgITools
|
2008-01-12 20:15:20 -08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_IMGITOOLS
|
|
|
|
|
|
|
|
imgTools();
|
2014-06-23 11:49:08 -07:00
|
|
|
|
|
|
|
private:
|
2008-01-12 20:15:20 -08:00
|
|
|
virtual ~imgTools();
|
|
|
|
};
|
2015-09-03 14:00:00 -07:00
|
|
|
|
|
|
|
} // namespace image
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-05-14 20:52:05 -07:00
|
|
|
#endif // mozilla_image_imgITools_h
|