代码搜索:CObject

找到约 2,165 项符合「CObject」的源代码

代码结果 2,165
www.eeworm.com/read/205324/15321056

h student.h

// student.h #ifndef _INSIDE_VISUAL_CPP_STUDENT #define _INSIDE_VISUAL_CPP_STUDENT class CStudent : public CObject { DECLARE_SERIAL(CStudent) public: CString m_strName; int m_nGrade;
www.eeworm.com/read/204013/15347682

cpp contact.cpp

#include "stdafx.h" #include "Contact.h" IMPLEMENT_SERIAL(CContact, CObject, 1) void CContact::Serialize(CArchive& ar) { if (ar.IsLoading()) { ar >> m_strName; ar >> m_strAddress1;
www.eeworm.com/read/200680/15427600

cpp npoint.cpp

#include "StdAfx.h" #include "NPoint.h" #include "math.h" IMPLEMENT_SERIAL( NPoint,CObject,1 )//使用IMPLEMENT_SERIAL宏 NPoint::NPoint(void) { dimension=0; value=NULL; } NPoint::NPoint(in
www.eeworm.com/read/109962/15544525

cpp contact.cpp

#include "stdafx.h" #include "Contact.h" IMPLEMENT_SERIAL(CContact, CObject, 1) void CContact::Serialize(CArchive& ar) { if (ar.IsLoading()) { ar >> m_strName; ar >> m_strAddress1;
www.eeworm.com/read/105725/15660232

h student.h

// student.h #ifndef _INSIDE_VISUAL_CPP_STUDENT #define _INSIDE_VISUAL_CPP_STUDENT class CStudent : public CObject { DECLARE_SERIAL(CStudent) public: CString m_strName; int m_nGr
www.eeworm.com/read/105725/15660503

h student.h

// student.h #ifndef _INSIDE_VISUAL_CPP_STUDENT #define _INSIDE_VISUAL_CPP_STUDENT class CStudent : public CObject { DECLARE_SERIAL(CStudent) public: CString m_strName; int m_nGr
www.eeworm.com/read/105725/15660556

h student.h

// student.h #ifndef _INSIDE_VISUAL_CPP_STUDENT #define _INSIDE_VISUAL_CPP_STUDENT class CStudent : public CObject { DECLARE_DYNAMIC(CStudent) public: CString m_strName; int m_nG
www.eeworm.com/read/105725/15660576

h student.h

// student.h #ifndef _INSIDE_VISUAL_CPP_STUDENT #define _INSIDE_VISUAL_CPP_STUDENT class CStudent : public CObject { DECLARE_DYNAMIC(CStudent) public: CString m_strName; int m_nG
www.eeworm.com/read/105725/15660703

h student.h

// student.h #ifndef _INSIDE_VISUAL_CPP_STUDENT #define _INSIDE_VISUAL_CPP_STUDENT class CStudent : public CObject { DECLARE_SERIAL(CStudent) public: CString m_strName; int m_nGr
www.eeworm.com/read/101973/15795842

h cdib.h

// cdib.h declaration for Inside Visual C++ CDib class #ifndef _INSIDE_VISUAL_CPP_CDIB #define _INSIDE_VISUAL_CPP_CDIB class CDib : public CObject { enum Alloc {noAlloc, crtAlloc, heapAlloc}; DECL