Files
Slnkdwf/Barcode/Code39.h
Jos Groot Lipman 8e894a966f V2.50 barcode39
svn path=/Slnkdwf/trunk/; revision=12501
2011-04-12 09:25:20 +00:00

29 lines
680 B
C++

// Code39.h: interface for the CCode39 class.
//
// Copyright 2002 Neil Van Eps
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CODE39_H__6FE17747_EADF_4E89_9DCF_7688B04897BC__INCLUDED_)
#define AFX_CODE39_H__6FE17747_EADF_4E89_9DCF_7688B04897BC__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Barcode.h"
class CCode39 : public CBarcode
{
public:
void DrawBitmap();
CCode39();
virtual ~CCode39();
private:
void DrawPattern(CString csPattern);
CString RetrievePattern( char c );
};
#endif // !defined(AFX_CODE39_H__6FE17747_EADF_4E89_9DCF_7688B04897BC__INCLUDED_)