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.
26 lines
618 B
26 lines
618 B
// Copyright 2009 Ryan Dahl <ry@tinyclouds.org>
|
|
#ifndef SRC_EVENTS_H_
|
|
#define SRC_EVENTS_H_
|
|
|
|
#include <node_object_wrap.h>
|
|
#include <v8.h>
|
|
|
|
namespace node {
|
|
|
|
class EventEmitter : public ObjectWrap {
|
|
public:
|
|
static void Initialize(v8::Local<v8::FunctionTemplate> ctemplate);
|
|
static v8::Persistent<v8::FunctionTemplate> constructor_template;
|
|
|
|
bool Emit(v8::Handle<v8::String> event,
|
|
int argc,
|
|
v8::Handle<v8::Value> argv[]);
|
|
|
|
protected:
|
|
static v8::Handle<v8::Value> Emit(const v8::Arguments& args);
|
|
|
|
EventEmitter() : ObjectWrap () { }
|
|
};
|
|
|
|
} // namespace node
|
|
#endif // SRC_EVENTS_H_
|
|
|