logfile.h 952 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /******************************************************************************
  2. |* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  3. |* ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  4. |* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  5. |* PARTICULAR PURPOSE.
  6. |*
  7. |* Copyright 1995-2005 Nero AG. All Rights Reserved.
  8. |*-----------------------------------------------------------------------------
  9. |* NeroSDK / AudioPluginManager
  10. |*
  11. |* FILE: logfile.h
  12. |*
  13. |* PURPOSE: Definition of logfile for debugging purposes
  14. ******************************************************************************/
  15. #ifndef _LOG_FILE_
  16. # define _LOG_FILE_
  17. #ifndef WIN64
  18. class CLogFile
  19. {
  20. // Construction/Destruction
  21. public:
  22. // Operations
  23. public:
  24. void SetFileName(const char *szFilePath);
  25. void operator<<(const char *szString);
  26. protected:
  27. // Data
  28. protected:
  29. CString m_csFilePath;
  30. };
  31. #endif // WIN64
  32. #endif // _LOG_FILE_