only: interface good

This commit is contained in:
rusefillc 2024-02-25 21:26:46 -05:00
parent 76110ca42a
commit 69ab75aa73
2 changed files with 3 additions and 0 deletions

View File

@ -10,6 +10,8 @@ import java.util.Map;
public interface ReaderState {
void setWithC_Defines(boolean withC_Defines);
EnumsReader getEnumsReader();
void doJob() throws IOException;
String getHeader();

View File

@ -67,6 +67,7 @@ public class ReaderStateImpl implements ReaderState {
this.withC_Defines = withC_Defines;
}
@Override
public EnumsReader getEnumsReader() {
return enumsReader;
}