Forum: C++ Dec 4th, 2008 |
| Replies: 2 Views: 353 This is the complete code for your reference, which fails.
/*
This is the class that creates he data-Type of each packet
*/
template <class dataObject>
class dataPacket
{ |
Forum: C++ Dec 4th, 2008 |
| Replies: 5 Views: 1,744 two for loops will not be necessary, a single one would do,
for each character in the input string,
substitute with target[char - 'a']
since u are going to have one to one correspondence, the... |
Forum: C++ Dec 4th, 2008 |
| Replies: 2 Views: 353 Hi,
I am coding a c++ based simulator, for which i need to implement a message queue.
The structure of the problem is such.
We have a program that contain a "queue" of messagePacket... |