MNE-CPP
0.1.9
A Framework for Electrophysiology
|
CircularBuffer class declaration. More...
#include "../utils_global.h"
#include <QPair>
#include <QSemaphore>
#include <QSharedPointer>
#include <Eigen/Core>
Go to the source code of this file.
Classes | |
class | UTILSLIB::CircularBuffer< _Tp > |
The TEMPLATE CIRCULAR BUFFER provides a template for thread safe circular buffers. More... | |
Typedefs | |
typedef CircularBuffer< int > | UTILSLIB::CircularBuffer_int |
typedef CircularBuffer< short > | UTILSLIB::CircularBuffer_short |
typedef CircularBuffer< char > | UTILSLIB::CircularBuffer_char |
typedef CircularBuffer< double > | UTILSLIB::CircularBuffer_double |
typedef CircularBuffer< QPair< int, int > > | UTILSLIB::CircularBuffer_pair_int_int |
typedef CircularBuffer< QPair< double, double > > | UTILSLIB::CircularBuffer_pair_double_double |
typedef CircularBuffer< Eigen::MatrixXd > | UTILSLIB::CircularBuffer_Matrix_double |
typedef CircularBuffer< Eigen::MatrixXf > | UTILSLIB::CircularBuffer_Matrix_float |
CircularBuffer class declaration.
Copyright (C) 2012, Lorenz Esch, Christoph Dinh. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Definition in file circularbuffer.h.
typedef CircularBuffer<char> UTILSLIB::CircularBuffer_char |
Defines CircularBuffer of char type.
Definition at line 293 of file circularbuffer.h.
typedef CircularBuffer<double> UTILSLIB::CircularBuffer_double |
Defines CircularBuffer of double type.
Definition at line 294 of file circularbuffer.h.
typedef CircularBuffer<int> UTILSLIB::CircularBuffer_int |
Defines CircularBuffer of integer type.
Definition at line 291 of file circularbuffer.h.
typedef CircularBuffer< Eigen::MatrixXd > UTILSLIB::CircularBuffer_Matrix_double |
Defines CircularBuffer of Eigen::MatrixXd type.
Definition at line 297 of file circularbuffer.h.
typedef CircularBuffer< Eigen::MatrixXf > UTILSLIB::CircularBuffer_Matrix_float |
Defines CircularBuffer of Eigen::MatrixXf type.
Definition at line 298 of file circularbuffer.h.
typedef CircularBuffer< QPair<double, double> > UTILSLIB::CircularBuffer_pair_double_double |
Defines CircularBuffer of double Pair type.
Definition at line 296 of file circularbuffer.h.
typedef CircularBuffer< QPair<int, int> > UTILSLIB::CircularBuffer_pair_int_int |
Defines CircularBuffer of integer Pair type.
Definition at line 295 of file circularbuffer.h.
typedef CircularBuffer<short> UTILSLIB::CircularBuffer_short |
Defines CircularBuffer of short type.
Definition at line 292 of file circularbuffer.h.