2016-06-15 23:48:41 +02:00
|
|
|
#ifndef COOKIE_H_
|
|
|
|
#define COOKIE_H_
|
|
|
|
|
2019-10-18 13:37:09 +02:00
|
|
|
/**
|
|
|
|
* This datatype is used to identify different connection over a single interface (like RMAP or I2C)
|
|
|
|
*/
|
2016-06-15 23:48:41 +02:00
|
|
|
class Cookie{
|
|
|
|
public:
|
|
|
|
virtual ~Cookie(){}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* COOKIE_H_ */
|