Click here to Skip to main content
16,007,760 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: Starting an .exe from an MC++ app Pin
ManagedCode5-May-03 18:11
ManagedCode5-May-03 18:11 
GeneralBeginner C++, text (array) sorting Pin
Sheshi29-Apr-03 23:29
Sheshi29-Apr-03 23:29 
GeneralRe: Beginner C++, text (array) sorting Pin
jhaga30-Apr-03 4:40
professionaljhaga30-Apr-03 4:40 
GeneralSimple question Pin
V.P.29-Apr-03 0:59
V.P.29-Apr-03 0:59 
GeneralRe: Simple question Pin
leppie29-Apr-03 7:53
leppie29-Apr-03 7:53 
GeneralRe: Simple question Pin
John R. Shaw29-Apr-03 18:28
John R. Shaw29-Apr-03 18:28 
GeneralPlease URGENT!! Pin
mAxW23-Apr-03 6:54
mAxW23-Apr-03 6:54 
GeneralRe: Please URGENT!! Pin
Paul Selormey23-Apr-03 18:21
Paul Selormey23-Apr-03 18:21 
Please avoid posting non-MC++ questions here. The code is full of arrangement problems. Also, there is nothing in "null" defined in C++. It should be "NULL"

Here is a simple rearranged codes which compiles successfully with VS.NET 2003, I am currently using:
typedef int Index;  //do not know what Index is so I made it int
					 
class BaseNode
{
public:
	BaseNode(){ indice = 0; };
private:
	Index indice;
};

class Lista
{
public:
	/* costruttore/distruttore */
	Lista ( Index n, BaseNode * V )
	{
	}
	~Lista()
	{
	}
}; 


class DLLista : public Lista  
{
public:
	DLLista(Index n, BaseNode * V);
	virtual ~DLLista();

	class Component 
	{
	public:
		Component * next;
		Component * prev;
		BaseNode Element;
		Component (BaseNode E);

	};

};


//DLLista.cpp

DLLista::DLLista(Index n, BaseNode * V) : Lista(n, V){
};

DLLista::Component::Component(BaseNode E){
	next=NULL; 
	prev=NULL;
	Element=E;
};

DLLista::~DLLista(){};


int _tmain(int argc, _TCHAR* argv[])
{
	return 0;
}


Best regards,
Paul.


Jesus Christ is LOVE! Please tell somebody.
GeneralControl toolbox icons Pin
Paul Selormey23-Apr-03 3:23
Paul Selormey23-Apr-03 3:23 
GeneralRe: Control toolbox icons Pin
leppie23-Apr-03 7:12
leppie23-Apr-03 7:12 
GeneralRe: Control toolbox icons Pin
Paul Selormey23-Apr-03 18:10
Paul Selormey23-Apr-03 18:10 
GeneralRe: Control toolbox icons Pin
leppie25-Apr-03 11:01
leppie25-Apr-03 11:01 
GeneralHiding unmanaged functions in assembly Pin
leppie21-Apr-03 8:42
leppie21-Apr-03 8:42 
GeneralRe: Hiding unmanaged functions in assembly Pin
Paul Selormey21-Apr-03 19:40
Paul Selormey21-Apr-03 19:40 
GeneralRe: Hiding unmanaged functions in assembly Pin
leppie22-Apr-03 7:06
leppie22-Apr-03 7:06 
GeneralRe: Hiding unmanaged functions in assembly Pin
leppie26-Apr-03 10:52
leppie26-Apr-03 10:52 
GeneralC and C++ compilers Pin
Mario_Young20-Apr-03 17:55
Mario_Young20-Apr-03 17:55 
GeneralRe: C and C++ compilers Pin
John R. Shaw29-Apr-03 18:57
John R. Shaw29-Apr-03 18:57 
GeneralRe: C and C++ compilers Pin
jhaga8-May-03 23:02
professionaljhaga8-May-03 23:02 
GeneralBug in VC++.net 2002: nested structs Pin
VizOne19-Apr-03 6:38
VizOne19-Apr-03 6:38 
GeneralRe: Bug in VC++.net 2002: nested structs Pin
Paul Selormey21-Apr-03 19:36
Paul Selormey21-Apr-03 19:36 
GeneralJagged arrays in MC++ Pin
Alexandru Savescu15-Apr-03 4:12
Alexandru Savescu15-Apr-03 4:12 
GeneralRe: Jagged arrays in MC++ Pin
Natty Gur15-Apr-03 4:29
Natty Gur15-Apr-03 4:29 
GeneralRe: Jagged arrays in MC++ Pin
Paul Selormey21-Apr-03 19:59
Paul Selormey21-Apr-03 19:59 
QuestionWhat's the difference between VC++ and Managed C++? Pin
BoudewijnEctor14-Apr-03 8:45
BoudewijnEctor14-Apr-03 8:45 

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.