mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-06-30 17:54:35 +02:00
20 lines
185 B
C++
20 lines
185 B
C++
#ifndef BOB_H__
|
|
#define BOB_H__
|
|
|
|
namespace i2p
|
|
{
|
|
namespace client
|
|
{
|
|
|
|
class BOBCommandChannel
|
|
{
|
|
public:
|
|
|
|
BOBCommandChannel (int port);
|
|
~BOBCommandChannel ();
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|