xpcom/ds/nsAtomService.h

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:15e1e3480d07
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5
6 #ifndef __nsAtomService_h
7 #define __nsAtomService_h
8
9 #include "nsIAtomService.h"
10 #include "mozilla/Attributes.h"
11
12 class nsAtomService MOZ_FINAL : public nsIAtomService
13 {
14 public:
15 nsAtomService();
16 NS_DECL_THREADSAFE_ISUPPORTS
17
18 NS_DECL_NSIATOMSERVICE
19
20 private:
21 ~nsAtomService() {}
22 };
23
24 #endif

mercurial