Department of Scientific Computing   
Institute for Numerical Simulation   
University of Bonn   
Documentation
Download
Programming References
Bug Reports / Suggestions
FAQ
Authors
Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members  

Buffer.hpp

00001 //
00002 // Buffers for various purposes
00003 //
00004 
00005 #ifndef _DOUBLE_BUFFER_
00006 #define _DOUBLE_BUFFER_
00007 
00008 #include "Wavelet.hpp"
00009 
00010 struct doubleBuffer {  
00011   //          doubleBuffer() ;
00012           doubleBuffer(int J) ;
00013          ~doubleBuffer() ;
00014 
00015   double  *lock()   ;
00016   void     unlock() ;
00017 
00018 private:
00019   void    Init(int J) ;
00020   double *b           ;
00021   bool    locked      ;
00022 } ;
00023 
00024 #endif

Generated at Mon Aug 19 10:02:31 2002 for AWFD by doxygen1.2.8.1 written by Dimitri van Heesch, © 1997-2001