2009-05-12 21:08:49 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: sw=2 ts=2 et lcs=trail\:.,tab\:>~ :
|
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/. */
|
2009-05-12 21:08:49 +00:00
|
|
|
|
|
|
|
#ifndef mozilla_storage_h_
|
|
|
|
#define mozilla_storage_h_
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// Public Interfaces
|
|
|
|
|
2010-03-12 15:18:38 +00:00
|
|
|
#include "mozStorageCID.h"
|
2009-05-12 21:08:49 +00:00
|
|
|
#include "mozIStorageAggregateFunction.h"
|
|
|
|
#include "mozIStorageConnection.h"
|
|
|
|
#include "mozIStorageError.h"
|
|
|
|
#include "mozIStorageFunction.h"
|
|
|
|
#include "mozIStoragePendingStatement.h"
|
|
|
|
#include "mozIStorageProgressHandler.h"
|
|
|
|
#include "mozIStorageResultSet.h"
|
|
|
|
#include "mozIStorageRow.h"
|
|
|
|
#include "mozIStorageService.h"
|
|
|
|
#include "mozIStorageStatement.h"
|
|
|
|
#include "mozIStorageStatementCallback.h"
|
2010-03-12 15:18:38 +00:00
|
|
|
#include "mozIStorageBindingParamsArray.h"
|
|
|
|
#include "mozIStorageBindingParams.h"
|
2010-10-19 13:46:49 +00:00
|
|
|
#include "mozIStorageVacuumParticipant.h"
|
2010-09-13 16:29:42 +00:00
|
|
|
#include "mozIStorageCompletionCallback.h"
|
|
|
|
#include "mozIStorageAsyncStatement.h"
|
2013-06-27 13:00:59 +00:00
|
|
|
#include "mozIStorageAsyncConnection.h"
|
2009-05-12 21:08:49 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// Native Language Helpers
|
|
|
|
|
|
|
|
#include "mozStorageHelper.h"
|
2010-11-08 19:42:29 +00:00
|
|
|
#include "mozilla/storage/StatementCache.h"
|
2009-07-13 19:19:03 +00:00
|
|
|
#include "mozilla/storage/Variant.h"
|
|
|
|
|
2009-05-12 21:08:49 +00:00
|
|
|
#endif // mozilla_storage_h_
|