2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
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/. */
|
1998-12-24 05:07:14 +00:00
|
|
|
|
1999-01-05 22:02:56 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
This header file just contains prototypes for the factory methods
|
|
|
|
for "builtin" data sources that are included in rdf.dll.
|
|
|
|
|
|
|
|
Each of these data sources is exposed to the external world via its
|
|
|
|
CID in ../include/nsRDFCID.h.
|
|
|
|
|
|
|
|
*/
|
1998-12-24 05:07:14 +00:00
|
|
|
|
|
|
|
#ifndef nsBuiltinDataSources_h__
|
|
|
|
#define nsBuiltinDataSources_h__
|
|
|
|
|
|
|
|
#include "nsError.h"
|
|
|
|
|
|
|
|
class nsIRDFDataSource;
|
|
|
|
|
1999-03-05 03:22:51 +00:00
|
|
|
// in nsFileSystemDataSource.cpp
|
|
|
|
nsresult NS_NewRDFFileSystemDataSource(nsIRDFDataSource** result);
|
|
|
|
|
1998-12-24 05:07:14 +00:00
|
|
|
#endif // nsBuiltinDataSources_h__
|
|
|
|
|