Jun Furutani / libMiMic

Fork of libMiMic by Ryo Iizuka

Revision:
7:2b33a8d84eb3
Child:
8:b9ed86e156dd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cpp/ModLocalFileSystem.h	Tue Apr 09 09:32:25 2013 +0000
@@ -0,0 +1,29 @@
+#pragma once
+////////////////////////////////////////////////////////////////////////////////
+// ModRomFiles.h
+////////////////////////////////////////////////////////////////////////////////
+
+#include "NyLPC_net.h"
+#include "ModBaseClass.h"
+
+
+namespace MiMic
+{
+    class HttpdConnection;
+
+    /**
+     * This class is httpd module.
+     * The class provide files on mbed LocalFile System.
+     */
+    class ModLocalFileSystem:ModBaseClass
+    {
+    public:
+
+        ModLocalFileSystem(const char* i_path);
+        ModLocalFileSystem();
+        virtual ~ModLocalFileSystem();
+        void setParam(const char* i_path);
+        bool execute(HttpdConnection& i_connection);
+    };
+
+}
\ No newline at end of file