Skip to content
Snippets Groups Projects
FEAdaptor.h 274 B
Newer Older
  • Learn to ignore specific revisions
  • #ifndef FEADAPTOR_HEADER
    #define FEADAPTOR_HEADER
    
    class Attributes;
    class Grid;
    
    namespace FEAdaptor
    {
    
    Petr Strakos's avatar
    Petr Strakos committed
    void Initialize(char* script);
    
    
    void Finalize();
    
    void CoProcess(
      Grid& grid, Attributes& attributes, double time, unsigned int timeStep, bool lastTimeStep);
    }
    
    #endif