Thread
:
How to use typedef for the template structure? What its syntax?
View Single Post
•
•
Join Date: Jul 2008
Posts: 2,001
Reputation:
Solved Threads: 343
ArkM
Offline
Postaholic
Re: How to use typedef for the template structure? What its syntax?
0
#
4
Oct 10th, 2008
What's a problem?
Help with Code Tags
C++ Syntax
(
Toggle Plain Text
)
typedef
box<int> MyFavouriteBoxType;
...
MyFavouriteBoxType
b1;
typedef box<int> MyFavouriteBoxType; ... MyFavouriteBoxType b1;
Look at STL headers on you C++ installation. There are lots of (useful) typedefs in STL templates...
ArkM
View Public Profile
Find all posts by ArkM