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

31 lines
795 B
C++

// Code93.h: interface for the CCode93 class.
//
// Copyright 2002 Neil Van Eps
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CODE93_H__9559F813_425A_11D6_8807_00104B2B0208__INCLUDED_)
#define AFX_CODE93_H__9559F813_425A_11D6_8807_00104B2B0208__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Barcode.h"
class CCode93 : public CBarcode
{
public:
CCode93();
virtual ~CCode93();
void DrawBitmap();
private:
void ASCIItoCode93Sequence( long nASCIINumber,long *nFirstNumber, long *nSecondNumber);
void DrawCheckDigits();
void DrawPattern(CString csPattern);
CString RetrievePattern( long c );
};
#endif // !defined(AFX_CODE93_H__9559F813_425A_11D6_8807_00104B2B0208__INCLUDED_)