blob: 62244d493ca05d8a609e2c08e8ed6eff07506081 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef NODE_CARES_H_
#define NODE_CARES_H_
#include <node.h>
#include <v8.h>
#include <ares.h>
namespace node {
class Cares {
public:
static void Initialize(v8::Handle<v8::Object> target);
};
} // namespace node
#endif // NODE_CARES_H_
|