Jun Furutani / libMiMic

Fork of libMiMic by Ryo Iizuka

Revision:
3:0a94993be1f6
Child:
11:c82a7b2899b0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cpp/NetConfig.h	Thu Apr 04 08:22:57 2013 +0000
@@ -0,0 +1,31 @@
+#pragma once
+////////////////////////////////////////////////////////////////////////////////
+// NetConfig.h
+////////////////////////////////////////////////////////////////////////////////
+
+#include "NyLPC_net.h"
+
+namespace MiMic
+{
+    /**
+     * Network configulation class.
+     */
+    class NetConfig
+    {
+    public:
+        NyLPC_TcNetConfig_t _inst;
+    public:
+        /**
+         * The constructor.
+         * This function initializes instance by onchip configulation data.
+         * @param i_is_factory_default
+          * Factory default flag.
+         * <ul>
+         * <li>true - The function sets factory default setting.
+         * <li>false -The function sets onchip memory configulation (default)
+         * </ul>
+         */
+        NetConfig(bool i_is_factory_default=false);
+        virtual ~NetConfig();
+    };
+   }
\ No newline at end of file