#ifndef ONEWAY_H #define ONEWAY_H #include /* C++ interface (jako callback v C) */ template class OneWay { public: virtual unsigned Send (T * const ptr, const unsigned len) = 0; }; #endif // ONEWAY_H