home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power GUI Programming with VisualAge C++
/
powergui.iso
/
powergui
/
shipapp
/
appstat
/
appstat.hpp
< prev
next >
Wrap
Text File
|
1996-10-29
|
618b
|
29 lines
#ifndef _APPSTAT_
#define _APPSTAT_
//************************************************************
// Packaging and Performance - Using Static Object Functions
//
// Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
// Copyright (c) 1997 John Wiley & Sons, Inc.
// All Rights Reserved.
//************************************************************
#include <ireslib.hpp>
class AppStatics
{
public:
// Destructor for cleanup
~AppStatics ();
// DLL Accessor function
static IDynamicLinkLibrary
&englishDLL();
private:
static IDynamicLinkLibrary
*engDLL;
};
#endif // _APPSTAT_