Mentions légales du service

Skip to content
Snippets Groups Projects
FTestCell.hpp 909 B
#ifndef FTESTCELL_HPP
#define FTESTCELL_HPP
// /!\ Please, you must read the license at the bottom of this page

#include "FBasicCell.hpp"

/**
* @author Berenger Bramas (berenger.bramas@inria.fr)
* @class FBasicCell
* Please read the license
*
* This class is used in the FTestKernels, please
* look at this class to know whit it is.
*/
class FTestCell : public FBasicCell  {
    // To store data during upward and downward pass
    long dataUp, dataDown;
public:
    FTestCell(): dataUp(0) , dataDown(0){
    }
    /** Default destructor */
    virtual ~FTestCell(){
    }
    long getDataUp() const {
        return this->dataUp;
    }
    void setDataUp(const long inData){
        this->dataUp = inData;
    }
    long getDataDown() const {
        return this->dataDown;
    }
    void setDataDown(const long inData){
        this->dataDown = inData;
    }
};


#endif //FTESTCELL_HPP

// [--LICENSE--]