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
DocData.h
Package: suplib.rar [view]
Upload User: mica555
Upload Date: 2014-05-08
Package Size: 68k
Code Size: 1k
Category:
CAD
Development Platform:
Visual C++
- // docdata.h : include file for document specific data
- // an instance of this class is automatically created
- // and managed by the AsdkDataManager class
- // see the AsdkDmgr.h DocData.cpp for more datail
- #if !defined(AFX_DOCDATA_H__77CF758B_E4B8_4D72_BF9E_07403FAFE97A__INCLUDED_)
- #define AFX_DOCDATA_H__77CF758B_E4B8_4D72_BF9E_07403FAFE97A__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- ////////////////////////////////////////////////////
- //
- // Here you can store the document / database
- // related data.
- //
- class CDocData
- {
- public:
- CDocData();
- CDocData(const CDocData& data);
- //CDocData(const CDocData &data) ;
- ~CDocData();
- // NOTE: DO NOT edit the following lines.
- //{{AFX_ARX_DATA(CDocData)
- //}}AFX_ARX_DATA
- CString str;
- // TODO: here you can add your variables
- // which depends on a document / database.
- };
- #endif