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

📄 rot13module.h

📁 SconeServer is a modular, object-orientated and extremely versatile network server framework.
💻 H
字号:
/* SconeServer exampleSimple rot13 text transform moduleWarning: The "encryption" provided by this module should not be consideredsecure by any means. Its purpose is to demonstrate the basic principles forcreating modules that modify data streams within the SconeServer framework.Copyright (c) 2000-2005 Andrew Wedgbury <wedge@sconemad.com> */#include "sconex/Module.h"//=============================================================================// Our module class, which must be derived from scx::Moduleclass Rot13Module : public scx::Module {public:  Rot13Module();    virtual ~Rot13Module();  virtual std::string info() const;    virtual int init();  virtual bool connect(    scx::Descriptor* endpoint,    scx::ArgList* args  );};

⌨️ 快捷键说明

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