mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
23 lines
362 B
C++
23 lines
362 B
C++
|
#ifndef SPROUT_WEED_LIMITED_HPP
|
||
|
#define SPROUT_WEED_LIMITED_HPP
|
||
|
|
||
|
#include <sprout/config.hpp>
|
||
|
|
||
|
namespace sprout {
|
||
|
namespace weed {
|
||
|
//
|
||
|
// limited
|
||
|
//
|
||
|
struct limited {
|
||
|
public:
|
||
|
enum category {
|
||
|
discard,
|
||
|
circular,
|
||
|
stopover
|
||
|
};
|
||
|
};
|
||
|
} // namespace weed
|
||
|
} // namespace sprout
|
||
|
|
||
|
#endif // #ifndef SPROUT_WEED_LIMITED_HPP
|