14 lines
217 B
C++
14 lines
217 B
C++
#ifndef COOKIE_H_
|
|
#define COOKIE_H_
|
|
|
|
/**
|
|
* This datatype is used to identify different connection over a single interface (like RMAP or I2C)
|
|
*/
|
|
class Cookie{
|
|
public:
|
|
virtual ~Cookie(){}
|
|
};
|
|
|
|
|
|
#endif /* COOKIE_H_ */
|