91 lines
2.4 KiB
C
91 lines
2.4 KiB
C
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Copyright (c) 2000 Microsoft Corporation
|
||
|
//
|
||
|
// Module Name:
|
||
|
// CClusSvcCleanup.h
|
||
|
//
|
||
|
// Description:
|
||
|
// Header file for CClusSvcCleanup class.
|
||
|
// The CClusSvcCleanup class is an action that cleans up the cluster service.
|
||
|
//
|
||
|
// Implementation Files:
|
||
|
// CClusSvcCleanup.cpp
|
||
|
//
|
||
|
// Maintained By:
|
||
|
// Vij Vasu (Vvasu) 01-MAY-2000
|
||
|
//
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
|
||
|
// Make sure that this file is included only once per compile path.
|
||
|
#pragma once
|
||
|
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
// Include Files
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
// For the CClusSvc base class
|
||
|
#include "CClusSvc.h"
|
||
|
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
// Forward declaration
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
class CBaseClusterCleanup;
|
||
|
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
//++
|
||
|
//
|
||
|
// class CClusSvcCleanup
|
||
|
//
|
||
|
// Description:
|
||
|
// The CClusSvcCleanup class is an action that clean up the ClusSvc service.
|
||
|
//
|
||
|
//--
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
class CClusSvcCleanup : public CClusSvc
|
||
|
{
|
||
|
public:
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
// Constructors and destructors
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
// Constructor.
|
||
|
CClusSvcCleanup( CBaseClusterCleanup * pbccParentActionIn );
|
||
|
|
||
|
// Default destructor.
|
||
|
~CClusSvcCleanup();
|
||
|
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
// Public methods
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
//
|
||
|
// Clean up the ClusSvc service.
|
||
|
//
|
||
|
void Commit();
|
||
|
|
||
|
//
|
||
|
// Rollback this cleanup.
|
||
|
//
|
||
|
void Rollback();
|
||
|
|
||
|
|
||
|
private:
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
// Private types
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
typedef CClusSvc BaseClass;
|
||
|
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
// Private data
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
}; //*** class CClusSvcCleanup
|