1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/image/src/imgTools.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- 1.5 + * 1.6 + * This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 +#include "imgITools.h" 1.11 + 1.12 +#define NS_IMGTOOLS_CID \ 1.13 +{ /* 3d8fa16d-c9e1-4b50-bdef-2c7ae249967a */ \ 1.14 + 0x3d8fa16d, \ 1.15 + 0xc9e1, \ 1.16 + 0x4b50, \ 1.17 + {0xbd, 0xef, 0x2c, 0x7a, 0xe2, 0x49, 0x96, 0x7a} \ 1.18 +} 1.19 + 1.20 +class imgTools : public imgITools 1.21 +{ 1.22 +public: 1.23 + NS_DECL_ISUPPORTS 1.24 + NS_DECL_IMGITOOLS 1.25 + 1.26 + imgTools(); 1.27 + virtual ~imgTools(); 1.28 +};