Page MenuHomec4science

Updatable.hpp
No OneTemporary

File Metadata

Created
Tue, Sep 10, 09:24

Updatable.hpp

#ifndef UPDATABLE_HPP
#define UPDATABLE_HPP
/*!
* \brief The Updatable class is an abstract class for classes meant
* to be updated over time.
*/
class Updatable
{
public:
/*!
* \brief Destructor.
*/
virtual ~Updatable() ;
/*!
* \brief Should trigger the update of the instance.
*/
virtual void update() = 0;
} ;
#endif // UPDATABLE_HPP

Event Timeline