Tekkotsu Homepage
Demos
Overview
Downloads
Dev. Resources
Reference
Credits

DataEvent.cc

Go to the documentation of this file.
00001 #include "DataEvent.h"
00002 
00003 template<> void DataEvent<unsigned char, -1>::getDataFromString(std::stringstream &ss) { ss >> data; }
00004 template<> void DataEvent<unsigned short int, -1>::getDataFromString(std::stringstream &ss) { ss >> data; }
00005 template<> void DataEvent<unsigned int, -1>::getDataFromString(std::stringstream &ss) { ss >> data; }
00006 template<> void DataEvent<int, -1>::getDataFromString(std::stringstream &ss) { ss >> data; }
00007 template<> void DataEvent<float, -1>::getDataFromString(std::stringstream &ss) { ss >> data; }
00008 template<> void DataEvent<double, -1>::getDataFromString(std::stringstream &ss) { ss >> data; }
00009 
00010 template<> void DataEvent<unsigned char, -1>::sendDataToString(std::stringstream &ss) const { ss << data; }
00011 template<> void DataEvent<unsigned short int, -1>::sendDataToString(std::stringstream &ss) const { ss << data; }
00012 template<> void DataEvent<unsigned int, -1>::sendDataToString(std::stringstream &ss) const { ss << data; }
00013 template<> void DataEvent<int, -1>::sendDataToString(std::stringstream &ss) const { ss << data; }
00014 template<> void DataEvent<float, -1>::sendDataToString(std::stringstream &ss) const { ss << data; }
00015 template<> void DataEvent<double, -1>::sendDataToString(std::stringstream &ss) const { ss << data; }
00016 

Tekkotsu v5.1CVS
Generated Mon May 9 04:58:37 2016 by Doxygen 1.6.3