Click here to Skip to main content
15,914,160 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: SDK problem Pin
Blake Miller6-May-04 8:25
Blake Miller6-May-04 8:25 
GeneralA question about OOP Pin
nguyenvhn3-May-04 23:55
nguyenvhn3-May-04 23:55 
GeneralRe: A question about OOP Pin
Jens Doose4-May-04 0:07
Jens Doose4-May-04 0:07 
GeneralRe: A question about OOP Pin
toxcct4-May-04 0:09
toxcct4-May-04 0:09 
GeneralRe: Template Pin
Antony M Kancidrowski3-May-04 23:13
Antony M Kancidrowski3-May-04 23:13 
GeneralRe: Template Pin
Jens Doose3-May-04 23:17
Jens Doose3-May-04 23:17 
GeneralRe: Template Pin
Anonymous3-May-04 23:39
Anonymous3-May-04 23:39 
GeneralRe: Template Pin
Jens Doose4-May-04 0:12
Jens Doose4-May-04 0:12 
Well, try it Wink | ;-)
Your linker will complain about missing functions...

You cannot define
std::vector m_vPlaylist;
since std::vector is a template and therefor
it needs a type, a specialization like
std::vector< int > m_vPlaylist;
which will generate a vector for storing ints.

But anyway you cannot call erase with an int parameter,
it takes an iterator.

Jens
GeneralRe: Template Pin
Antony M Kancidrowski4-May-04 2:53
Antony M Kancidrowski4-May-04 2:53 
GeneralRe: Template Pin
Anonymous4-May-04 3:41
Anonymous4-May-04 3:41 
GeneralRe: Template Pin
Jens Doose4-May-04 4:43
Jens Doose4-May-04 4:43 
GeneralRe: Template Pin
Anonymous4-May-04 5:40
Anonymous4-May-04 5:40 
GeneralRe: Template Pin
Anonymous4-May-04 21:19
Anonymous4-May-04 21:19 
GeneralRe: Template Pin
Jens Doose5-May-04 5:45
Jens Doose5-May-04 5:45 
GeneralTemplate Pin
Anonymous3-May-04 23:03
Anonymous3-May-04 23:03 
Generalset time like a clock Pin
Member 8209053-May-04 22:52
Member 8209053-May-04 22:52 
GeneralRe: set time like a clock Pin
Joe Woodbury4-May-04 4:28
professionalJoe Woodbury4-May-04 4:28 
GeneralRe: set time like a clock Pin
Member 8209054-May-04 15:55
Member 8209054-May-04 15:55 
GeneralRe: set time like a clock Pin
Joe Woodbury4-May-04 19:45
professionalJoe Woodbury4-May-04 19:45 
GeneralRe: set time like a clock Pin
Member 8209054-May-04 20:05
Member 8209054-May-04 20:05 
GeneralRe: set time like a clock Pin
Joe Woodbury5-May-04 6:31
professionalJoe Woodbury5-May-04 6:31 
Questionwhy not to open &lt;graphics.h&gt;in vc++? Pin
vividtang3-May-04 22:38
vividtang3-May-04 22:38 
AnswerRe: why not to open &lt;graphics.h&gt;in vc++? Pin
Jens Doose3-May-04 22:57
Jens Doose3-May-04 22:57 
QuestionHow to drag file between my app and windows explorer /desktop. Pin
andyxia3-May-04 22:11
andyxia3-May-04 22:11 
AnswerRe: How to drag file between my app and windows explorer /desktop. Pin
Jens Doose3-May-04 23:22
Jens Doose3-May-04 23:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.