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
|
|
|
|
2014-08-25 23:17:24 +04:00
|
|
|
typedef nsInterfaceHashtable<nsCharPtrHashKey, nsISupports>
|
|
|
|
nsProperties_HashBase;
|
2004-10-25 23:52:48 +04:00
|
|
|
|
2014-07-09 19:15:21 +04:00
|
|
|
class nsProperties final : 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
|
|
|
|
2018-09-15 19:47:04 +03:00
|
|
|
nsProperties() { NS_INIT_AGGREGATED(nullptr); }
|
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___ */
|