First Publish. Works fine.

Dependents:   unzen_sample_lpcxpresso_4337_callbacks

Revision:
11:5f91f55065c1
Parent:
10:45cbff9ee6e4
Child:
12:5e73a102d809
--- a/unzen.h	Sun May 08 09:52:36 2016 +0000
+++ b/unzen.h	Sun May 08 09:56:29 2016 +0000
@@ -24,7 +24,7 @@
     /**
       \brief singleton style audio frame work. Create a object and execute the \ref framework::start() method.
     */
-    class framework 
+    class Framework 
     {
     private:
             /**
@@ -39,7 +39,7 @@
                 call back is called )
                 as 1. If it is needed to use other value, call \ref set_brock_size() method. 
             */
-        framework(void);
+        Framework(void);
     public:
             /**
                 \brief getting the singleton object for processing.
@@ -47,7 +47,7 @@
                 \details
                 TO call the object method, use this method to retrieve the singleton object.
             */
-        static framework * get() { static framework singleton; return &singleton ; }
+        static Framework * get() { static Framework singleton; return &singleton ; }
         
             /**
                 \brief set the interval interrupt count for each time call back is called.