blob: 756b031c991100f3553a49f04e7fd7000c81bbdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// waitcur.h
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and Microsoft
// QuickHelp and/or WinHelp documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft Foundation Classes product.
// Defines CWaitCursor, a class which simplifies putting up the wait cursor
// during long operations.
//
#ifndef _WAITCUR_H_ /* FIXME: attempt to fix redef of type CWaitCursor class */
#define _WAITCUR_H_
struct CWaitCursor
{
// Construction/Destruction
CWaitCursor()
{ AfxGetApp()->BeginWaitCursor(); }
~CWaitCursor()
{ AfxGetApp()->EndWaitCursor(); }
// Operations
void Restore()
{ AfxGetApp()->RestoreWaitCursor(); }
};
#endif
/////////////////////////////////////////////////////////////////////////////
|