cdatabaseddl.cpp

来自「本人买的<<VC++项目开发实例>>源代码配套光盘.」· C++ 代码 · 共 43 行

CPP
43
字号
// Copyright (C) 1991 - 1999 Rational Software Corporation

#include "stdafx.h"
#include "CDatabaseDDL.h"





//##ModelId=3CC83B390259
CDatabaseDDL::~CDatabaseDDL()
{
	// ToDo: Add your specialized code here and/or call the base class
}

//##ModelId=3CC83B3A000C
CDatabaseDDL::CDatabaseDDL()
{
	// ToDo: Add your specialized code here and/or call the base class
	strcpy(m_sObjectKindString, "Database");
}



//##ModelId=3CC841EA016C
void CDatabaseDDL::GetParams(CString& strParams)
{
	// ToDo: Add your specialized code here
	
	static_cast<void>(0);
}



//##ModelId=3CC9817603DD
void CDatabaseDDL::New()
{
	// ToDo: Add your specialized code here or after the call to base class
	
	CDDLSQL::New();
}

⌨️ 快捷键说明

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