Advertisement
casualhavic

STK Error

Sep 17th, 2012
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. private:
  2.  
  3.   StkFloat *data_;
  4.   StkFloat dataRate_;
  5.   size_t nFrames_;
  6.   unsigned int nChannels_;
  7.   size_t size_;
  8.   size_t bufferSize_;
  9.  
  10. };
  11.  
  12. StkFrames &stk::Generator::tick_(stk::StkFrames &,unsigned int channels) = 0;
  13.  
  14. inline bool StkFrames :: empty() const
  15. {
  16.   if ( size_ > 0 ) return false;
  17.   else return true;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement