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/functionread.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/functionread.h (limited to 'src/functionread.h') diff --git a/src/functionread.h b/src/functionread.h new file mode 100644 index 0000000..39bf32e --- /dev/null +++ b/src/functionread.h @@ -0,0 +1,17 @@ +#ifndef FUNCTION_READ_H +#define FUNCTION_READ_H + +#include "function.h" + +class FunctionRead : public Function +{ +public: + FunctionRead(); + virtual ~FunctionRead(); + + virtual Bu::String getName() const; + virtual Variable call( Variable &input, VarList lParams ); + +}; + +#endif -- cgit v1.2.3