Files
node-v0.x-archive/src/file.h
Ryan d1b0ce6d37 Large refactor of file code.
All the c++ code is now reduced to simple wrappers. The node.fs.File object
is defined entirely in javascript now. As is the actionQueue methods.

This makes the boundaries much cleaner. There is still some thought that
needs to go into how exactly the API should behave but this simplification
is a first step.
2009-05-26 03:30:51 +02:00

15 lines
201 B
C++

#ifndef node_file_h
#define node_file_h
#include <v8.h>
namespace node {
class File {
public:
static void Initialize (v8::Handle<v8::Object> target);
};
} // namespace node
#endif // node_file_h