CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: D_Drmmr

Search: Search took 0.05 seconds.

  1. Replies
    6
    Views
    8,492

    Re: Problems with classes (C2061)

    You have to include wall.h in ball.h

    // wall.h


    #ifndef WALL_H
    #define WALL_H

    class Wall
    {
  2. Replies
    6
    Views
    8,492

    Re: Problems with classes (C2061)

    You should put header guard in the header file. You don't put them around an include statement.
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured