Line data Source code
1 : /*! 2 : * \file 3 : * \brief Class tools::Interface_reset. 4 : */ 5 : #ifndef INTERFACE_RESET_HPP__ 6 : #define INTERFACE_RESET_HPP__ 7 : 8 : namespace spu 9 : { 10 : namespace tools 11 : { 12 : class Interface_reset 13 : { 14 : public: 15 : virtual void reset() = 0; 16 7758 : virtual ~Interface_reset() = default; 17 : }; 18 : 19 : } 20 : } 21 : 22 : #endif // INTERFACE_RESET_HPP__