Scope
Inputs.cpp
1 #include "stdafx.h"
2 #include "Inputs.h"
3 #include "helpers\helpers.h"
4 
5 namespace scope {
6 
7 Inputs::Inputs(const uint32_t& _area)
8  : area(_area) {
9  requested_samples = 10000;
10 }
11 
12 Inputs::~Inputs(void) {
13 
14 }
15 
16 uint32_t Inputs::RequestedSamples() const {
17  return requested_samples;
18 }
19 
20 }
Inputs(const uint32_t &_area)
get the area and set up everything
Definition: Inputs.cpp:7
uint32_t requested_samples
the total number of samples that should be read (in case of nframes mode) otherwise the buffer size (...
Definition: Inputs.h:20
virtual uint32_t RequestedSamples() const
Definition: Inputs.cpp:16
This is the include file for standard system include files, or project specific include files that ar...
Various helper functions and classes for Scope.