2001-09-25 22:53:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2001-03-02 15:18:56 +00:00
|
|
|
|
|
|
|
#ifndef nsTransactionList_h__
|
|
|
|
#define nsTransactionList_h__
|
|
|
|
|
2008-12-10 16:46:36 +00:00
|
|
|
#include "nsAutoPtr.h"
|
2012-07-13 06:33:42 +00:00
|
|
|
#include "nsISupportsImpl.h"
|
|
|
|
#include "nsITransactionList.h"
|
|
|
|
#include "nsIWeakReferenceUtils.h"
|
2001-03-02 15:18:56 +00:00
|
|
|
|
|
|
|
class nsITransaction;
|
|
|
|
class nsITransactionManager;
|
2012-07-13 06:33:42 +00:00
|
|
|
class nsTransactionItem;
|
2001-03-02 15:18:56 +00:00
|
|
|
class nsTransactionStack;
|
|
|
|
|
|
|
|
/** implementation of a transaction list object.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class nsTransactionList : public nsITransactionList
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
2008-12-10 16:46:36 +00:00
|
|
|
nsWeakPtr mTxnMgr;
|
|
|
|
nsTransactionStack *mTxnStack;
|
|
|
|
nsRefPtr<nsTransactionItem> mTxnItem;
|
2001-03-02 15:18:56 +00:00
|
|
|
|
2014-06-23 22:40:02 +00:00
|
|
|
protected:
|
|
|
|
virtual ~nsTransactionList();
|
|
|
|
|
2001-03-02 15:18:56 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
nsTransactionList(nsITransactionManager *aTxnMgr, nsTransactionStack *aTxnStack);
|
|
|
|
nsTransactionList(nsITransactionManager *aTxnMgr, nsTransactionItem *aTxnItem);
|
|
|
|
|
|
|
|
/* Macro for AddRef(), Release(), and QueryInterface() */
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
/* nsITransactionManager method implementations. */
|
|
|
|
NS_DECL_NSITRANSACTIONLIST
|
|
|
|
|
|
|
|
/* nsTransactionList specific methods. */
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsTransactionList_h__
|