Click here to Skip to main content
15,896,063 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Still need help with FTPConnection Pin
racing5715-Aug-06 23:00
racing5715-Aug-06 23:00 
GeneralRe: Still need help with FTPConnection Pin
Justin Tay16-Aug-06 2:23
Justin Tay16-Aug-06 2:23 
GeneralRe: Still need help with FTPConnection Pin
racing5716-Aug-06 3:46
racing5716-Aug-06 3:46 
GeneralRe: Still need help with FTPConnection Pin
Justin Tay16-Aug-06 22:01
Justin Tay16-Aug-06 22:01 
Questiontimers without windows Pin
m.dietz15-Aug-06 4:09
m.dietz15-Aug-06 4:09 
AnswerRe: timers without windows Pin
led mike15-Aug-06 4:26
led mike15-Aug-06 4:26 
GeneralRe: timers without windows Pin
m.dietz15-Aug-06 5:07
m.dietz15-Aug-06 5:07 
GeneralRe: timers without windows [modified] Pin
led mike15-Aug-06 5:53
led mike15-Aug-06 5:53 
GeneralRe: timers without windows Pin
m.dietz15-Aug-06 20:24
m.dietz15-Aug-06 20:24 
GeneralRe: timers without windows Pin
led mike16-Aug-06 5:05
led mike16-Aug-06 5:05 
AnswerRe: timers without windows Pin
cje15-Aug-06 4:26
cje15-Aug-06 4:26 
QuestionSingleton problem !!! Pin
Bratu Aurelian15-Aug-06 4:05
Bratu Aurelian15-Aug-06 4:05 
QuestionGetting IP of a Network group PC Pin
Kharfax15-Aug-06 4:03
Kharfax15-Aug-06 4:03 
AnswerRe: Getting IP of a Network group PC Pin
David Crow15-Aug-06 4:09
David Crow15-Aug-06 4:09 
GeneralRe: Getting IP of a Network group PC Pin
Kharfax15-Aug-06 4:11
Kharfax15-Aug-06 4:11 
AnswerRe: Getting IP of a Network group PC Pin
A_Fa15-Aug-06 19:45
A_Fa15-Aug-06 19:45 
GeneralRe: Getting IP of a Network group PC Pin
Kharfax16-Aug-06 2:26
Kharfax16-Aug-06 2:26 
QuestionHow to auto size a column in a CListCtrl Pin
paperke6715-Aug-06 3:07
paperke6715-Aug-06 3:07 
AnswerRe: How to auto size a column in a CListCtrl Pin
RChin15-Aug-06 4:17
RChin15-Aug-06 4:17 
AnswerRe: How to auto size a column in a CListCtrl Pin
JWood15-Aug-06 4:19
JWood15-Aug-06 4:19 
AnswerRe: How to auto size a column in a CListCtrl Pin
Hamid_RT16-Aug-06 4:55
Hamid_RT16-Aug-06 4:55 
AnswerRe: How to auto size a column in a CListCtrl Pin
paperke6718-Aug-06 11:52
paperke6718-Aug-06 11:52 
QuestionInterdependent classes Pin
CoolASL15-Aug-06 0:24
CoolASL15-Aug-06 0:24 
Hi all,
Please help me out of this problem.
I have 3 classes which all require each other.
The problem is that they fail to recognize each other on compilation and give errors as: Undefined class Two, Undefined class Three and Undefined class One

Someone suggested me forward declaration. But that too did not help.
Where am i going wrong ? Please help me.

Here is my code.. (Actually i am having the same problem with an VC++ program. This is just to simulate the same problem)

File1.h

class One
{
private:
	int one;
public:
	int GetOne();
	Two tw;
	Three th;
};


File2.h
class Two
{
private:
	int two;
public:
	int GetTheTwo();
	One on;
	Three th;
};


File3.h
class Three
{
private:
	int three;
public:
	int GetAslThree();
	One on;
	Two tw;
};


File1.cpp
#ifndef _FILE1_H
#define _FILE1_H
#include "File1.h"
#endif

int One::GetOne()
{
	return one;
}


File2.cpp
#ifndef _FILE2_H
#define _FILE2_H
#include "File2.h"
#endif

int Two::GetTheTwo()
{
	return this->two;
}


File3.cpp
#ifndef _FILE3_H
#define _FILE3_H
#include "File3.h"
#endif

int Three::GetAslThree()
{
	return this->three;
}


Thanks in advance.


*** Who said nothing is impossible? I have been doing it for a long time ***

AnswerRe: Interdependent classes Pin
Maxwell Chen15-Aug-06 0:33
Maxwell Chen15-Aug-06 0:33 
GeneralRe: Interdependent classes Pin
CoolASL15-Aug-06 5:31
CoolASL15-Aug-06 5:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.