WIP Style

This commit is contained in:
Mike Walters
2016-01-11 02:04:39 +00:00
parent 14425a7885
commit 3aec698450
18 changed files with 375 additions and 348 deletions

View File

@@ -17,15 +17,15 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "grsamplebuffer.h"
template<typename Tin, typename Tout>
void GRSampleBuffer<Tin, Tout>::work(void *input, void *output, int length)
{
mem_source->set_source(input, length);
mem_sink->set_sink(output, length);
tb->run();
}
#include "grsamplebuffer.h"
template<typename Tin, typename Tout>
void GRSampleBuffer<Tin, Tout>::work(void *input, void *output, int length)
{
mem_source->set_source(input, length);
mem_sink->set_sink(output, length);
tb->run();
}
template class GRSampleBuffer<std::complex<float>, std::complex<float>>;
template class GRSampleBuffer<std::complex<float>, float>;