AppMode.h 454 B

1234567891011121314151617181920
  1. #pragma once
  2. /////////////////////////////////////////////////////////////////////////////
  3. // AppMode.h : Declaration of the IAppMode interface
  4. //
  5. /////////////////////////////////////////////////////////////////////////////
  6. // IAppMode
  7. //
  8. class __declspec(novtable) IAppMode :
  9. public IObjectSingle
  10. {
  11. public:
  12. virtual STDMETHODIMP Run(int argc, TCHAR* argv[]) = 0;
  13. };
  14. /////////////////////////////////////////////////////////////////////////////