I2of5.h 685 B

1234567891011121314151617181920212223242526272829
  1. // I2of5.h: interface for the CI2of5 class.
  2. //
  3. // Copyright 2002 Neil Van Eps
  4. //
  5. //////////////////////////////////////////////////////////////////////
  6. #if !defined(AFX_I2OF5_H__B02700B9_DD08_4B2C_B966_47F1275323B4__INCLUDED_)
  7. #define AFX_I2OF5_H__B02700B9_DD08_4B2C_B966_47F1275323B4__INCLUDED_
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11. #include "Barcode.h"
  12. class CI2of5 : public CBarcode
  13. {
  14. public:
  15. void BitmapToClipboard();
  16. void DrawBitmap();
  17. CI2of5();
  18. virtual ~CI2of5();
  19. private:
  20. CString RetrievePattern(int nTwoDigitNumber);
  21. void DrawPattern(CString csCharPattern);
  22. };
  23. #endif // !defined(AFX_I2OF5_H__B02700B9_DD08_4B2C_B966_47F1275323B4__INCLUDED_)