mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
455 B
22 lines
455 B
16 years ago
|
#ifndef node_events_h
|
||
|
#define node_events_h
|
||
|
|
||
|
#include "node.h"
|
||
|
#include <v8.h>
|
||
|
|
||
|
namespace node {
|
||
|
|
||
|
class EventEmitter : public ObjectWrap {
|
||
|
public:
|
||
|
static void Initialize (v8::Handle<v8::Object> target);
|
||
|
static v8::Persistent<v8::FunctionTemplate> constructor_template;
|
||
|
|
||
|
bool Emit (const char *type, int argc, v8::Handle<v8::Value> argv[]);
|
||
|
|
||
|
EventEmitter (v8::Handle<v8::Object> handle)
|
||
|
: ObjectWrap(handle) { };
|
||
|
};
|
||
|
|
||
|
} // namespace node
|
||
|
#endif
|