CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 11 of 11

Threaded View

  1. #11
    Join Date
    Apr 2004
    Posts
    102

    Re: syntax error : missing ';' before '*'

    I noticed that you have using namespace std; in your header files, that can cause problems as well. using namespace whatever; should only be in your implementation files.

    Similarly, you have #include <iostream> in your Vertex.h but do not make use of it.
    Last edited by jefranki; April 24th, 2009 at 05:57 PM. Reason: grammar

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured