mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-29 03:14:41 -04:00
25 lines
486 B
C++
25 lines
486 B
C++
/*
|
|
* @file SwitchData.hpp
|
|
* @author Robert Borzecki (robert.borzecki@mudita.com)
|
|
* @date 15 cze 2019
|
|
* @brief
|
|
* @copyright Copyright (C) 2019 mudita.com
|
|
* @details
|
|
*/
|
|
#ifndef MODULE_APPS_SWITCHDATA_HPP_
|
|
#define MODULE_APPS_SWITCHDATA_HPP_
|
|
|
|
namespace gui {
|
|
|
|
//class template that stores information that was sent along with switch message
|
|
class SwitchData {
|
|
public:
|
|
|
|
SwitchData() {};
|
|
virtual ~SwitchData() {};
|
|
};
|
|
|
|
} /* namespace gui */
|
|
|
|
#endif /* MODULE_APPS_SWITCHDATA_HPP_ */
|