- 论坛徽章:
- 0
|
- //From afxwin.h
- // macro to be used in ATL search/organize/preview/thumbnail handlers with MFC document support
- #define DECLARE_DOCUMENT(classDocument)\
- protected:\
- virtual IDocument* CreateDocument()\
- {\
- CRuntimeClass* pDocRTC = RUNTIME_CLASS(classDocument);\
- if (pDocRTC == NULL)\
- {\
- TRACE("Document class does not support dynamic creation."); \
- return NULL;\
- }\
- classDocument* pDoc = DYNAMIC_DOWNCAST(classDocument, pDocRTC->CreateObject());\
- ASSERT_VALID(pDoc);\
- return pDoc->GetAdapter();\
- }
复制代码 这是我看到的一个宏定义,头一次看见这么多行的宏定义,谁能告诉我里面的“\”的作用是啥? |
|