2015-04-09 20:25:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04: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/. */
|
1999-01-27 02:50:25 +03:00
|
|
|
|
|
|
|
#ifndef nsProperties_h___
|
|
|
|
#define nsProperties_h___
|
|
|
|
|
1999-05-01 02:55:21 +04:00
|
|
|
#include "nsIProperties.h"
|
2004-10-25 23:52:48 +04:00
|
|
|
#include "nsInterfaceHashtable.h"
|
|
|
|
#include "nsHashKeys.h"
|
1999-05-26 05:38:36 +04:00
|
|
|
#include "nsAgg.h"
|
2012-06-06 03:51:58 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
1999-01-27 02:50:25 +03:00
|
|
|
|
2002-08-27 00:36:44 +04:00
|
|
|
#define NS_PROPERTIES_CID \
|
|
|
|
{ /* 4de2bc90-b1bf-11d3-93b6-00104ba0fd40 */ \
|
|
|
|
0x4de2bc90, \
|
|
|
|
0xb1bf, \
|
|
|
|
0x11d3, \
|
|
|
|
{0x93, 0xb6, 0x00, 0x10, 0x4b, 0xa0, 0xfd, 0x40} \
|
|
|
|
}
|
|
|
|
|
2014-08-25 23:17:24 +04:00
|
|
|
typedef nsInterfaceHashtable<nsCharPtrHashKey,
|
|
|
|
nsISupports> nsProperties_HashBase;
|
2004-10-25 23:52:48 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsProperties final
|
2014-07-09 19:15:21 +04:00
|
|
|
: public nsIProperties
|
|
|
|
, public nsProperties_HashBase
|
|
|
|
{
|
1999-05-01 02:55:21 +04:00
|
|
|
public:
|
1999-05-26 05:38:36 +04:00
|
|
|
NS_DECL_AGGREGATED
|
2000-01-05 12:29:25 +03:00
|
|
|
NS_DECL_NSIPROPERTIES
|
1999-05-01 02:55:21 +04:00
|
|
|
|
2014-07-28 21:19:06 +04:00
|
|
|
explicit nsProperties(nsISupports *aOuter) { NS_INIT_AGGREGATED(aOuter); }
|
2014-07-09 19:15:21 +04:00
|
|
|
~nsProperties() {}
|
1999-05-01 02:55:21 +04:00
|
|
|
};
|
|
|
|
|
1999-01-27 02:50:25 +03:00
|
|
|
#endif /* nsProperties_h___ */
|