mirror of
https://github.com/riuson/lcd-image-converter.git
synced 2026-03-04 15:24:14 +01:00
24 lines
803 B
C++
24 lines
803 B
C++
#ifndef CMDOPTIONS_H
|
|
#define CMDOPTIONS_H
|
|
//-----------------------------------------------------------------------------
|
|
namespace CommandLine {
|
|
//-----------------------------------------------------------------------------
|
|
enum Mode
|
|
{
|
|
ModeUndefined = 0,
|
|
ModeConvert
|
|
};
|
|
//-----------------------------------------------------------------------------
|
|
enum DocumentType
|
|
{
|
|
DocumentTypeUndefined = 0,
|
|
DocumentTypeImage,
|
|
DocumentTypeFont
|
|
};
|
|
//-----------------------------------------------------------------------------
|
|
//-----------------------------------------------------------------------------
|
|
//-----------------------------------------------------------------------------
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
#endif // CMDOPTIONS_H
|