1 /******************************************************************************* 2 * Cushion - A library to help state transition matrix design 3 * 4 * This library aims to process the table which is state transition matrix 5 * designed on the D language source code. 6 * Tables written in csv file will be converted to D language source code at 7 * compile time. 8 * 9 * Examples: 10 * ----- 11 * 12 * ----- 13 * 14 * Copyright: © 2019, SHOO 15 * License: [BSL-1.0](http://boost.org/LICENSE_1_0.txt). 16 * Author: SHOO 17 */ 18 module cushion; 19 20 public import cushion.core; 21 public import cushion.csvdecoder; 22 public import cushion.handler; 23 public import cushion.flow;