View Single Post
Join Date: Sep 2008
Posts: 273
Reputation: Sci@phy will become famous soon enough Sci@phy will become famous soon enough 
Solved Threads: 42
Sci@phy's Avatar
Sci@phy Sci@phy is offline Offline
Posting Whiz in Training

Re: How to use typedef for the template structure? What its syntax?

 
0
  #9
Oct 10th, 2008
I believe he's trying to do something like:
  1. typedef box MyGreatBeautifulBox;
  2.  
  3. //and use it as:
  4. MyGreatBeutifulBox<int> a;
  5. MyGreatBeutifulBox<char>b;

I don't think it can be done
Reply With Quote