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.
81 lines
1.0 KiB
81 lines
1.0 KiB
/*++
|
|
|
|
Copyright (c) 1998-1999 Microsoft Corporation
|
|
All rights reserved.
|
|
|
|
Module Name:
|
|
|
|
dbgfac.hxx
|
|
|
|
Abstract:
|
|
|
|
Debug Device Class Factory header file
|
|
|
|
Author:
|
|
|
|
Steve Kiraly (SteveKi) 10-Dec-1995
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef _DBGFAC_HXX_
|
|
#define _DBGFAC_HXX_
|
|
|
|
DEBUG_NS_BEGIN
|
|
|
|
class TDebugFactory
|
|
{
|
|
|
|
public:
|
|
|
|
TDebugFactory::
|
|
TDebugFactory(
|
|
VOID
|
|
);
|
|
|
|
TDebugFactory::
|
|
~TDebugFactory(
|
|
VOID
|
|
);
|
|
|
|
BOOL
|
|
TDebugFactory::
|
|
bValid(
|
|
VOID
|
|
) const;
|
|
|
|
virtual
|
|
TDebugDevice *
|
|
TDebugFactory::
|
|
Produce(
|
|
IN UINT uDevice,
|
|
IN LPCTSTR pszConfiguration,
|
|
IN BOOL bUnicode
|
|
);
|
|
|
|
static
|
|
VOID
|
|
TDebugFactory::
|
|
Dispose(
|
|
IN TDebugDevice *pDevice
|
|
);
|
|
|
|
private:
|
|
|
|
TDebugFactory::
|
|
TDebugFactory(
|
|
const TDebugFactory &rhs
|
|
);
|
|
|
|
TDebugFactory &
|
|
TDebugFactory::
|
|
operator=(
|
|
const TDebugFactory &rhs
|
|
);
|
|
|
|
};
|
|
|
|
DEBUG_NS_END
|
|
|
|
#endif // _DBGFAC_HXX_
|
|
|