2009-04-08 09:24:25 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2009-04-13 09:29:41 -07:00
|
|
|
* vim: sw=2 ts=2 et lcs=trail\:.,tab\:>~ :
|
2012-05-21 04:12:37 -07: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/. */
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2010-06-01 05:38:00 -07:00
|
|
|
#ifndef MOZSTORAGESTATEMENTROW_H
|
|
|
|
#define MOZSTORAGESTATEMENTROW_H
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2012-05-02 10:01:39 -07:00
|
|
|
#include "mozIStorageStatementRow.h"
|
2008-09-12 14:30:37 -07:00
|
|
|
#include "nsIXPCScriptable.h"
|
2012-06-12 20:35:10 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace storage {
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2009-05-08 17:29:56 -07:00
|
|
|
class Statement;
|
|
|
|
|
2012-06-12 20:35:10 -07:00
|
|
|
class StatementRow MOZ_FINAL : public mozIStorageStatementRow
|
|
|
|
, public nsIXPCScriptable
|
2009-04-08 09:24:25 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_MOZISTORAGESTATEMENTROW
|
|
|
|
NS_DECL_NSIXPCSCRIPTABLE
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2009-05-08 17:29:56 -07:00
|
|
|
StatementRow(Statement *aStatement);
|
2008-09-12 14:30:37 -07:00
|
|
|
protected:
|
|
|
|
|
2014-06-23 15:40:03 -07:00
|
|
|
~StatementRow() {}
|
|
|
|
|
2009-05-08 17:29:56 -07:00
|
|
|
Statement *mStatement;
|
2008-11-19 11:33:00 -08:00
|
|
|
|
2009-05-08 17:29:56 -07:00
|
|
|
friend class Statement;
|
2008-09-12 14:30:37 -07:00
|
|
|
};
|
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
} // namespace storage
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2010-06-01 05:38:00 -07:00
|
|
|
#endif /* MOZSTORAGESTATEMENTROW_H */
|