Files
lcd-image-converter/classes/cmdline/cmdoptions.h
2014-05-27 19:36:04 +06:00

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