extensions/spellcheck/src/mozSpellI18NManager.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/extensions/spellcheck/src/mozSpellI18NManager.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,29 @@
     1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.8 +
     1.9 +#ifndef mozSpellI18NManager_h__
    1.10 +#define mozSpellI18NManager_h__
    1.11 +
    1.12 +#include "nsCOMPtr.h"
    1.13 +#include "mozISpellI18NManager.h"
    1.14 +#include "nsCycleCollectionParticipant.h"
    1.15 +
    1.16 +#define MOZ_SPELLI18NMANAGER_CONTRACTID "@mozilla.org/spellchecker/i18nmanager;1"
    1.17 +#define MOZ_SPELLI18NMANAGER_CID         \
    1.18 +{ /* {AEB8936F-219C-4D3C-8385-D9382DAA551A} */  \
    1.19 +0xaeb8936f, 0x219c, 0x4d3c, \
    1.20 +  { 0x83, 0x85, 0xd9, 0x38, 0x2d, 0xaa, 0x55, 0x1a } }
    1.21 +
    1.22 +class mozSpellI18NManager : public mozISpellI18NManager
    1.23 +{
    1.24 +public:
    1.25 +  NS_DECL_ISUPPORTS
    1.26 +  NS_DECL_MOZISPELLI18NMANAGER
    1.27 +
    1.28 +  mozSpellI18NManager();
    1.29 +  virtual ~mozSpellI18NManager();
    1.30 +};
    1.31 +#endif
    1.32 +

mercurial