Where Online Learning is simpler!
The C and C++ Include Header Files
/usr/include/nodejs/src/node_report.h
$ cat -n /usr/include/nodejs/src/node_report.h 1 #ifndef SRC_NODE_REPORT_H_ 2 #define SRC_NODE_REPORT_H_ 3 4 #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS 5 6 #include "node.h" 7 #include "node_buffer.h" 8 #include "uv.h" 9 #include "util.h" 10 11 #ifndef _WIN32 12 #include
13 #include
14 #endif 15 16 #include
17 #include
18 19 namespace node { 20 namespace report { 21 // Function declarations - utility functions in src/node_report_utils.cc 22 void WalkHandle(uv_handle_t* h, void* arg); 23 24 template
25 std::string ValueToHexString(T value) { 26 std::stringstream hex; 27 28 hex << "0x" << std::setfill('0') << std::setw(sizeof(T) * 2) << std::hex << 29 value; 30 return hex.str(); 31 } 32 33 // Function declarations - export functions in src/node_report_module.cc 34 void WriteReport(const v8::FunctionCallbackInfo
& info); 35 void GetReport(const v8::FunctionCallbackInfo
& info); 36 37 } // namespace report 38 } // namespace node 39 40 #endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS 41 42 #endif // SRC_NODE_REPORT_H_
Contact us
|
About us
|
Term of use
|
Copyright © 2000-2025 MyWebUniversity.com ™