Important alert: (current site time 7/15/2013 5:38:18 PM EDT)
 

VB icon

Declare an abstract base class to IMPLEMENT_SERIAL

Email
Submitted on: 10/23/1999
By: Found on the World Wide Web 
Level: Intermediate
User Rating: Unrated
Compatibility: C++ (general)
Views: 12124
 
     How can I declare an abstract base class to be IMPLEMENT_SERIAL? You need a special form of IMPLEMENT_SERIAL that looks like this: Use the regular DECLARE_SERIAL but use IMPLEMENT_SERIAL_ABC shown below instead of IMPLEMENT_SERIAL.
 
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
				
//**************************************
// Name: Declare an abstract base class to IMPLEMENT_SERIAL
// Description:How can I declare an abstract base class to be IMPLEMENT_SERIAL?
You need a special form of IMPLEMENT_SERIAL that looks like this: Use the regular DECLARE_SERIAL but use IMPLEMENT_SERIAL_ABC shown below instead of IMPLEMENT_SERIAL. 
// By: Found on the World Wide Web
//**************************************

#define IMPLEMENT_SERIAL_ABC(class_name, base_class_name, wSchema) 
_IMPLEMENT_RUNTIMECLASS(class_name, base_class_name, wSchema, NULL) 
CArchive& AFXAPI operator>>(CArchive& ar, class_name* &pOb) 
{ 
pOb = (class_name*) ar.ReadObject(RUNTIME_CLASS(class_name)); 
return ar; 
} 


Other 162 submission(s) by this author

 


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Intermediate category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments

 There are no comments on this submission.
 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.