// Box.cpp: implementation of the CBox class.
//
//
#include "stdafx.h"
#include "Test.h"
#include "Box.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
IMPLEMENT_SERIAL (CBox,CObject,1)
//
// Construction/Destruction
//
CBox::CBox()
{
}
CBox::~CBox()
{
}
void CBox::Serialize(CArchive& ar)
{
if(ar.IsStoring())
{
ar<
else
{
ar>>re;
}
}



