Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
OGDoc.cpp
Upload User: jqph2005
Upload Date: 2009-03-31
Package Size: 117k
Code Size: 1k
Category:
OpenGL program
Development Platform:
C/C++
- // OGDoc.cpp : implementation of the COGDoc class
- //
- #include "stdafx.h"
- #include "OG.h"
- #include "OGDoc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // COGDoc
- IMPLEMENT_DYNCREATE(COGDoc, CDocument)
- BEGIN_MESSAGE_MAP(COGDoc, CDocument)
- //{{AFX_MSG_MAP(COGDoc)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // COGDoc construction/destruction
- COGDoc::COGDoc()
- {
- }
- COGDoc::~COGDoc()
- {
- }
- BOOL COGDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- return TRUE;
- }
- /////////////////////////////////////////////////////////////////////////////
- // COGDoc serialization
- void COGDoc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- }
- else
- {
- }
- }
- /////////////////////////////////////////////////////////////////////////////
- // COGDoc diagnostics
- #ifdef _DEBUG
- void COGDoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void COGDoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // COGDoc commands