View Single Post
Re: Misc C++ things I have trouble understanding
Old
  (#2)
Lazy
Member
 
Lazy's Avatar
 
Status: Offline
Posts: 236
Join Date: Jan 2004
Location: Toronto, Ontario, Canada
Default Re: Misc C++ things I have trouble understanding - 02-04-2004

You need to change "Class" to "class".
If you look carefully at the errors ( Specifically #1 ) that the compiler has outputted you'll see what's wrong.

All C++ keywords are case-sensitive so typing Class or Struct is not the same as class or struct.
  
Reply With Quote