www.pudn.com > Editor.rar > Main.cpp


//#ifdef 
//#include"Main.h" 
#include"Edit.h" 
//#include"MyList.h" 
//#endif 
int main() 
{ 
	char* in=new char[20]; 
	cout<<"¡­¡­¡­¡­This is a text editor. Welcome to have a try £¡¡­¡­¡­¡­"<>in; 
	cin.get(); 
	Editor buffer(in,in); 
	buffer.get_command(); 
 
	delete in; 
	return 0; 
}