2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2000-03-31 09:19:17 +00:00
|
|
|
|
|
|
|
#ifndef __nsAtomService_h
|
|
|
|
#define __nsAtomService_h
|
|
|
|
|
|
|
|
#include "nsIAtomService.h"
|
2012-06-05 23:51:58 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2000-03-31 09:19:17 +00:00
|
|
|
|
2012-06-05 23:51:58 +00:00
|
|
|
class nsAtomService MOZ_FINAL : public nsIAtomService
|
2000-03-31 09:19:17 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsAtomService();
|
2013-07-19 02:31:26 +00:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2000-03-31 09:19:17 +00:00
|
|
|
|
|
|
|
NS_DECL_NSIATOMSERVICE
|
2004-01-15 06:14:18 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
~nsAtomService() {}
|
2000-03-31 09:19:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|