Thread: namespace and class..help!

  1. #1
    Registered User Joelito's Avatar
    Join Date
    Mar 2005
    Location
    Tijuana, BC, México
    Posts
    310

    namespace and class..help!

    this is my CDlg32.cpp
    Code:
    #include <windows.h>
    #include "CDlg32.h"
    
    namespace Joel {
    	class CDlg32 {
    	private:
    		HINSTANCE hInstancia;
    		HWND hDlg;
    		int nDLG;
    	public:
    		CDlg32();
    		~CDlg32();
    	protected:
    	};
    }
    Now, CDlg32.h:
    Code:
    #if !defined(_CDLG32_H)
    #define _CDLG32_H
    
    CDlg32::CDlg32() : hInstancia(NULL), hDlg(NULL), nDLG(0) {}
    
    #endif
    Now main.cpp
    Code:
    #include <windows.h>
    #include "CDlg32.h"
    
    using Joel::CDlg32;
    
    int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd) {
    	return 0;
    }
    Returns this errors.
    CDlg32.h(4) : error C2871: 'Joel' : does not exist or is not a namespace
    CDlg32.h(6) : error C2653: 'CDlg32' : is not a class or namespace name
    CDlg32.h(6) : error C2550: 'CDlg32' : constructor initializer lists are only allowed on constructor definitions
    CDlg32.h(6) : warning C4508: 'CDlg32' : function should return a value; 'void' return type assumed
    main.cpp(4) : error C2653: 'Joel' : is not a class or namespace name
    main.cpp(4) : error C2873: 'CDlg32' : symbol cannot be used in a using-declaration
    * PC: Intel Core 2 DUO E6550 @ 2.33 GHz with 2 GB RAM: Archlinux-i686 with xfce4.
    * Laptop: Intel Core 2 DUO T6600 @ 2.20 GHz with 4 GB RAM: Archlinux-x86-64 with xfce4.

  2. #2
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    It looks like the code in CDlg32.cpp should be in CDlg32.h
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  3. #3
    Hurry Slowly vart's Avatar
    Join Date
    Oct 2006
    Location
    Rishon LeZion, Israel
    Posts
    6,788
    And code that is in the CDlg32.h should be in the cpp
    All problems in computer science can be solved by another level of indirection,
    except for the problem of too many layers of indirection.
    – David J. Wheeler

  4. #4
    Registered User Joelito's Avatar
    Join Date
    Mar 2005
    Location
    Tijuana, BC, México
    Posts
    310
    Yeah!

    Didn't see that!

    Thanks!
    * PC: Intel Core 2 DUO E6550 @ 2.33 GHz with 2 GB RAM: Archlinux-i686 with xfce4.
    * Laptop: Intel Core 2 DUO T6600 @ 2.20 GHz with 4 GB RAM: Archlinux-x86-64 with xfce4.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Problem with friend class declaration in a namespace
    By Angus in forum C++ Programming
    Replies: 2
    Last Post: 12-09-2008, 01:29 PM
  2. inline templated class method as standalone function in namespace
    By monikersupreme in forum C++ Programming
    Replies: 4
    Last Post: 10-28-2008, 11:38 AM
  3. Message class ** Need help befor 12am tonight**
    By TransformedBG in forum C++ Programming
    Replies: 1
    Last Post: 11-29-2006, 11:03 PM
  4. Post...
    By maxorator in forum C++ Programming
    Replies: 12
    Last Post: 10-11-2005, 08:39 AM
  5. Predeclaration of template class in namespace
    By unregistred in forum C++ Programming
    Replies: 0
    Last Post: 05-30-2003, 03:52 AM