As per my previous question, I'd like to do the following:
#include <vector>
#include<string>
#include <cstdint>
template<typename T> class Message;
template<> class Message <std::vector<uint8_t>>
{
public:
const T getKey() { return key; };
const T getMessage() { return message; };
protected:
T key;
T message;
};
However, IntelliSense tells me that identifier "T" is undefined"
What am I doing wrong?