mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
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.
15 lines
201 B
C++
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
|