IDE problem
From: Stephen (spmok2_at_canada.com)
Date: 10/08/04
- Next message: Alvaro Palma: "Is this a bug? (MRU doesn't work for all menus)"
- Previous message: Sigurd Stenersen: "Re: Can I change the caption of a dialog/propertypage at runtime?"
- Messages sorted by: [ date ] [ thread ]
Date: 8 Oct 2004 09:14:43 -0700
TheClassFile.h
--------------------------------------------------------------------
class Blah_Fooh
{
public:
enum eModule
{
eBlah1 = 0,
eBlah2 = 1,
eBlah3 = 2,
};
Blah_Fooh();
virtual ~Blah_Fooh();
bool AFoohFooh( CString &data, enum Blah_Fooh::eModule module );
};
TheClassFile.cpp
--------------------------------------------------------------------
...
bool Blah_Fooh::AFoohFooh( CString &data, enum Blah_Fooh::eModule
module )
{
bool result=false;
...
...
return result;
}
I have created the above class in my project. I have a method (above)
in which the parameter is an enum which works fine. My only concern
is that in the WorkSpace in the IDE I would open up this class
Blah_Fooh
and try to access the above method, by clicking on it, I would get the
popup that says "Cannot find the definition (implementation) of this
function".
Why is it doing this? how can I fix it?
- Next message: Alvaro Palma: "Is this a bug? (MRU doesn't work for all menus)"
- Previous message: Sigurd Stenersen: "Re: Can I change the caption of a dialog/propertypage at runtime?"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|