Code39.h 679 B

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