diff options
author | Stef Walter <stef@thewalter.net> | 2003-09-17 19:07:23 +0000 |
---|---|---|
committer | Stef Walter <stef@thewalter.net> | 2003-09-17 19:07:23 +0000 |
commit | 3f95d417d9e623ac0c74df8ef11d7a01846392dd (patch) | |
tree | 45ec73f2dc07eafd7f41a6f62a8cdfbaa279469f /CmdLine/CmdLineApp.h |
Diffstat (limited to 'CmdLine/CmdLineApp.h')
-rw-r--r-- | CmdLine/CmdLineApp.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/CmdLine/CmdLineApp.h b/CmdLine/CmdLineApp.h new file mode 100644 index 0000000..f0700d2 --- /dev/null +++ b/CmdLine/CmdLineApp.h @@ -0,0 +1,26 @@ +// CmdLineApp.h: interface for the CCmdLineApp class. +// +////////////////////////////////////////////////////////////////////// + +#if !defined(AFX_CmdLineApp_H__19178A46_7FDB_11D3_BF9E_0020182B97FC__INCLUDED_) +#define AFX_CmdLineApp_H__19178A46_7FDB_11D3_BF9E_0020182B97FC__INCLUDED_ + +#if _MSC_VER > 1000 +#pragma once +#endif // _MSC_VER > 1000 + +#include "..\common\NightSecApp.h" + +class CCmdLineApp : public CNightSecApp +{ +public: + CCmdLineApp(); + virtual ~CCmdLineApp(); + + virtual bool InitInstance(); + +protected: + UINT FindParam(TCHAR chParam); +}; + +#endif // !defined(AFX_CmdLineApp_H__19178A46_7FDB_11D3_BF9E_0020182B97FC__INCLUDED_) |