From f16f239688b632fc54684c3e0e1430fd89a67db5 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 3 Jun 2011 07:18:23 +0000 Subject: I added basic support for "opaque" type variables. I think there's one more tweak to it that I would like to make, but it's fine for now. I also added open, close, read, and write functions. They work just fine, but I'll also add a readLine function, and maybe even a readToken function later. --- src/functionwrite.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/functionwrite.h (limited to 'src/functionwrite.h') diff --git a/src/functionwrite.h b/src/functionwrite.h new file mode 100644 index 0000000..75b2283 --- /dev/null +++ b/src/functionwrite.h @@ -0,0 +1,17 @@ +#ifndef FUNCTION_WRITE_H +#define FUNCTION_WRITE_H + +#include "function.h" + +class FunctionWrite : public Function +{ +public: + FunctionWrite(); + virtual ~FunctionWrite(); + + virtual Bu::String getName() const; + virtual Variable call( Variable &input, VarList lParams ); + +}; + +#endif -- cgit v1.2.3