stdafx.cpp

来自「希望大家多多交流」· C++ 代码 · 共 23 行

CPP
23
字号
// stdafx.cpp : source file that includes just the standard includes
//	draw.pch will be the pre-compiled header
//	stdafx.obj will contain the pre-compiled type information

#include "stdafx.h"
template <> void AFXAPI ConstructElements <thegraph> ( thegraph* pNewthegraphs, int nCount )
{
    for ( int i = 0; i < nCount; i++, pNewthegraphs++ )
    {
        // call CPerson default constructor directly
        new( pNewthegraphs )thegraph;
    }
}
template <> void AFXAPI SerializeElements <thegraph> ( CArchive& ar, thegraph* pNewthegraphs, int nCount )
{
    for ( int i = 0; i < nCount; i++, pNewthegraphs++ )
    {
        // Serialize each CPerson object
        pNewthegraphs->Serialize( ar );
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?