inethandler.hh

来自「It s a tool designed to extract as much 」· HH 代码 · 共 39 行

HH
39
字号
/* -*- c++ -*- ---------------------------------------------------------------   Copyright (C) 2005, SWECO, All Rights Reserved.   Interface for the Bluetooth network handler facility   $Id$   Author: Zsolt Molnar (Zsolt.Molnar@ieee.org)   ---------------------------------------------------------------------------*/#ifndef __INETHANDLER_HH__#define __INETHANDLER_HH__#include "base.hh"#include "Device.hh"#ifdef _cplusplusextern "C" {#endifclass INetHandler {public:	INetHandler() {};	virtual ~INetHandler() {};	virtual bool connect(const Device& aDevice) = 0;	virtual void unconnect(const Device& aDevice) = 0;	virtual void commit() = 0;};#ifdef _cplusplus}#endif#endif /* #ifndef __INETHANDLER_HH__ */   

⌨️ 快捷键说明

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