You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #ifndef MODULE_DB_PARAMETER_HEAD_FILE
- #define MODULE_DB_PARAMETER_HEAD_FILE
-
- #pragma once
-
- #include "ModuleManagerHead.h"
-
- //////////////////////////////////////////////////////////////////////////////////
-
- //模块参数
- class MODULE_MANAGER_CLASS CModuleDBParameter
- {
- //服务参数
- protected:
- tagDataBaseParameter m_PlatformDBParameter; //连接信息 ///---连接为平台数据库PlatformDB
-
- //静态变量
- protected:
- static CModuleDBParameter * m_pModuleDBParameter; //对象指针
-
- //函数定义
- public:
- //构造函数
- CModuleDBParameter();
- //析构函数
- virtual ~CModuleDBParameter();
-
- //连接信息
- public:
- //连接信息
- tagDataBaseParameter * GetPlatformDBParameter() { return &m_PlatformDBParameter; }
- //连接信息
- VOID SetPlatformDBParameter(tagDataBaseParameter & PlatformDBParameter) { m_PlatformDBParameter = PlatformDBParameter; }
-
- //静态函数
- public:
- //获取对象
- static CModuleDBParameter * GetModuleDBParameter() { return m_pModuleDBParameter; }
- };
-
- //////////////////////////////////////////////////////////////////////////////////
-
- #endif
|