Fork of Smoothie to port to mbed non-LPC targets.

Dependencies:   mbed

Fork of Smoothie by Stéphane Cachat

Revision:
2:1df0b61d3b5a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libs/Network/uip/CallbackStream.h	Fri Feb 28 18:52:52 2014 -0800
@@ -0,0 +1,34 @@
+#ifndef CALLBACKSTREAM_H
+#define CALLBACKSTREAM_H
+
+typedef int (*cb_t)(const char *, void *);
+
+#ifdef __cplusplus
+#include "libs/StreamOutput.h"
+
+
+class CallbackStream : public StreamOutput {
+    public:
+        CallbackStream(cb_t cb, void *u);
+        virtual ~CallbackStream();
+        int puts(const char*);
+        void inc() { use_count++; }
+        void dec();
+        int get_count() { return use_count; }
+        void mark_closed();
+
+    private:
+        cb_t callback;
+        void *user;
+        bool closed;
+        int use_count;
+};
+
+#else
+
+extern void *new_callback_stream(cb_t cb, void *);
+extern void delete_callback_stream(void *);
+
+#endif // __cplusplus
+
+#endif