ReadOnlyFlag.h 504 B

1234567891011121314151617181920
  1. #pragma once
  2. #include "..\..\Shared\DittoDefines.h"
  3. #include "..\..\Shared\IClip.h"
  4. #include <afxcoll.h>
  5. class CReadOnlyFlag
  6. {
  7. public:
  8. CReadOnlyFlag(void);
  9. ~CReadOnlyFlag(void);
  10. bool ResetReadOnlyFlag(const CDittoInfo &DittoInfo, IClip *pClip, bool resetFlag);
  11. protected:
  12. bool LoadUnicodeFiles(CStringArray &lines, IClipFormats *pFormats);
  13. bool LoadTextFiles(CStringArray &lines, IClipFormats *pFormats);
  14. bool LoadHDropFiles(CStringArray &lines, IClipFormats *pFormats);
  15. };