add (simple) archutils tree and AppInstance class

This commit is contained in:
Glenn Maynard
2002-12-16 01:46:42 +00:00
parent f02b45bbd7
commit b0d45c22d1
2 changed files with 45 additions and 0 deletions
@@ -0,0 +1,21 @@
#ifndef APP_INSTANCE_H
#define APP_INSTANCE_H
/* Win32 only: get an HINSTANCE; used for starting dialog boxes. */
class AppInstance
{
HINSTANCE h;
public:
AppInstance();
~AppInstance();
HINSTANCE Get() const { return h; }
};
#endif
/*
* Copyright (c) 2002 by the person(s) listed below. All rights reserved.
*
* Glenn Maynard
*/