mirror of https://github.com/tongzx/nt5src
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.
42 lines
595 B
42 lines
595 B
/*
|
|
*
|
|
* NOTES:
|
|
*
|
|
* REVISIONS:
|
|
* pcy30Apr93: Split off from comctrl
|
|
* pcy02May93: Added missing endif
|
|
* cad19May93: Added IsA() method
|
|
* cad27May93: added include file to reduce lib size
|
|
*
|
|
*/
|
|
#ifndef __DCOMCTRL_H
|
|
#define __DCOMCTRL_H
|
|
|
|
#include "_defs.h"
|
|
//
|
|
// Defines
|
|
//
|
|
_CLASSDEF(DevComContrl)
|
|
|
|
//
|
|
// Implementation uses
|
|
//
|
|
#include "comctrl.h"
|
|
|
|
|
|
class DevComContrl : public CommController {
|
|
|
|
protected:
|
|
|
|
PUpdateObj theParent;
|
|
|
|
public:
|
|
|
|
DevComContrl(PUpdateObj aParent);
|
|
virtual ~DevComContrl();
|
|
|
|
virtual INT Initialize();
|
|
virtual INT Update(PEvent anEvent);
|
|
};
|
|
|
|
#endif
|