autogram/src/robinsonizer_mode.hpp

19 lines
298 B
C++
Raw Normal View History

2020-11-19 16:02:02 +01:00
//
// robinsonizer_mode.hpp
// robinsonizer
//
// Created by Bob Polis at 2019-02-02
// Copyright (c) 2019 SwiftCoder. All rights reserved.
//
2020-11-20 17:53:00 +01:00
#ifndef _ROBINSONIZER_MODE_H_
#define _ROBINSONIZER_MODE_H_
2020-11-19 16:02:02 +01:00
enum class robinsonizer_mode {
pangram,
lax_autogram,
strict_autogram
};
2020-11-20 17:53:00 +01:00
#endif