|
Aegis
4.25.D505
|
#include <lock.h>
Public Member Functions | |
| virtual | ~quit_action_lock () |
| quit_action_lock () | |
| void | operator() (int exit_status) |
Private Member Functions | |
| quit_action_lock (const quit_action_lock &) | |
| quit_action_lock & | operator= (const quit_action_lock &) |
The quit_action_lock class is used to represent the actions which need to be performed to release locks on exit.
| virtual quit_action_lock::~quit_action_lock | ( | ) | [virtual] |
The destructor.
The default constructor.
| quit_action_lock::quit_action_lock | ( | const quit_action_lock & | ) | [private] |
The copy constructor. Do not use.
| void quit_action_lock::operator() | ( | int | exit_status | ) | [virtual] |
The operator() method is called just before exit(exit_status) is called. It affords and opportunity to "clean up" before the program exits.
| exit_status | The imminent exit status of the program. |
Implements quit_action.
| quit_action_lock& quit_action_lock::operator= | ( | const quit_action_lock & | ) | [private] |
The assignment operator. Do not use.
1.7.6.1