19 lines
298 B
C++
19 lines
298 B
C++
//
|
|
// robinsonizer_mode.hpp
|
|
// robinsonizer
|
|
//
|
|
// Created by Bob Polis at 2019-02-02
|
|
// Copyright (c) 2019 SwiftCoder. All rights reserved.
|
|
//
|
|
|
|
#ifndef _ROBINSONIZER_MODE_H_
|
|
#define _ROBINSONIZER_MODE_H_
|
|
|
|
enum class robinsonizer_mode {
|
|
pangram,
|
|
lax_autogram,
|
|
strict_autogram
|
|
};
|
|
|
|
#endif
|