gecko-dev/docshell/shistory/nsSHTransaction.h

38 строки
841 B
C
Исходник Обычный вид История

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
2012-05-21 15:12:37 +04:00
* 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-12-23 01:35:31 +03:00
#ifndef nsSHTransaction_h
#define nsSHTransaction_h
// Helper Classes
#include "nsCOMPtr.h"
// Needed interfaces
1999-12-23 01:35:31 +03:00
#include "nsISHTransaction.h"
class nsISHEntry;
1999-12-23 01:35:31 +03:00
class nsSHTransaction : public nsISHTransaction
1999-12-23 01:35:31 +03:00
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISHTRANSACTION
1999-12-23 01:35:31 +03:00
nsSHTransaction();
1999-12-23 01:35:31 +03:00
protected:
virtual ~nsSHTransaction();
1999-12-23 01:35:31 +03:00
protected:
bool mPersist;
nsISHTransaction* mPrev; // Weak Reference
nsCOMPtr<nsISHTransaction> mNext;
nsCOMPtr<nsISHEntry> mSHEntry;
1999-12-23 01:35:31 +03:00
};
#endif /* nsSHTransaction_h */