FTP Project

C++ Source Files in the Project:

server.cpp | client.cpp | administration.cpp | item_record.cpp

C++ Header Files in the Project:

item_record.h

 

 
//======================================================================
//  By Xuan Sun 
//  Dec. 22, 99
//  File: item_record.h (in p_ftpadn project)
//======================================================================= 

#include windows.h	// not able to use brackets because of HTML tags
#include stdio.h
#include stdlib.h 

class itemRecord {

private:
	char id[10];
	char name[50];
	char dir[50];
	char comm[100];
	bool beini;
public:
	itemRecord();
	~itemRecord();

	bool getRecord(char*, char*, char*, char*);
	void displayRecord(void);
	void editRecord(void);
	bool iniRecord(char*);
	bool setRecord(char*, char*, char*, char*);
};