⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sampleelt.hh

📁 Click is a modular router toolkit. To use it you ll need to know how to compile and install the sof
💻 HH
字号:
#ifndef SAMPLEPACKAGEELEMENT_HH#define SAMPLEPACKAGEELEMENT_HH#include <click/element.hh>CLICK_DECLS/* * =c * SamplePackageElement() * =s debugging * demonstrates how to write a package * =d * * This is the only element in the `sample' package. It demonstrates how to * write an element that will be placed in a package. It does nothing except * report that the package was successfully loaded when it initializes. */class SamplePackageElement : public Element { public:    SamplePackageElement();		// SEE sample.cc FOR CONSTRUCTOR    ~SamplePackageElement();		// SEE sample.cc FOR DESTRUCTOR    const char *class_name() const	{ return "SamplePackageElement"; }    int initialize(ErrorHandler *errh);};CLICK_ENDDECLS#endif

⌨️ 快捷键说明

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