registryana.h

来自「ipv6 隧道探测工具。是linux下使用的。 用于探测两点间是否存在隧道」· C头文件 代码 · 共 33 行

H
33
字号
#ifndef REGISTRYANA_H#define REGISTRYANA_H#include <fstream>#include <iostream>#include <cstdlib>#include <cstring>#include "Segment.h"using namespace std;// The macro __GNUG__ is set for GNU C++#ifdef __GNUG__#include <unistd.h>		// for access()#else#include <io.h>         // for _access()#endifclass RegistryAna {  public :    RegistryAna();    int searchDB(Segment);    void setDbPath(string);  private :    int searcher(string);    string dbPath;};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?