Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/HulahopDirectoryProvider.cpp
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-05-19 14:10:05 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-05-19 14:10:05 (GMT)
commite77e975333ac47677c48b57cea0ef6f785609941 (patch)
tree81490b4c694c490a115d67e7f07947672b5342c5 /src/HulahopDirectoryProvider.cpp
Initial checkin
Diffstat (limited to 'src/HulahopDirectoryProvider.cpp')
-rw-r--r--src/HulahopDirectoryProvider.cpp51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/HulahopDirectoryProvider.cpp b/src/HulahopDirectoryProvider.cpp
new file mode 100644
index 0000000..dd7bf41
--- /dev/null
+++ b/src/HulahopDirectoryProvider.cpp
@@ -0,0 +1,51 @@
+/*
+ * Copyright (C) 2007, Red Hat, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#include "HulahopDirectoryProvider.h"
+
+NS_IMPL_QUERY_INTERFACE2(HulahopDirectoryProvider,
+ nsIDirectoryServiceProvider,
+ nsIDirectoryServiceProvider2)
+
+NS_IMETHODIMP_(nsrefcnt)
+HulahopDirectoryProvider::AddRef()
+{
+ return 1;
+}
+
+NS_IMETHODIMP_(nsrefcnt)
+HulahopDirectoryProvider::Release()
+{
+ return 1;
+}
+
+NS_IMETHODIMP
+HulahopDirectoryProvider::GetFile(const char *aKey,
+ PRBool *aPersist,
+ nsIFile **aResult)
+{
+ return NS_ERROR_FAILURE;
+}
+
+NS_IMETHODIMP
+HulahopDirectoryProvider::GetFiles(const char *aKey,
+ nsISimpleEnumerator **aResult)
+{
+ return NS_ERROR_FAILURE;
+}