Short description
The top level class in the ean128.h header file is declared as
follow:
#include <windows.h>
#include <tchar.h>
#include <atlstr.h>
#include <atlcoll.h>
namespace EAN_128
{
class EAN128
{
public:
EAN128();
void SetXResolution(int);
void SetYResolution(int);
void Reset();
BOOL AddPiece(LPCTSTR);
void Draw(HDC,int,int,int,COLORREF);
void SetOneModuleWidth(float);
float GetOneModuleWidth();
void SetLeadIn(int);
void SetLeadOut(int);
int GetLeadIn();
int GetLeadOut();
CString GetMetricsDescription();
int GetLengthInModules();
void SetLeadInAndLeadOutFlag(BOOL);
BOOL GetLeadInAndLeadOutFlag();
}
}