mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 13:49:18 +01:00
12 lines
246 B
Java
12 lines
246 B
Java
// This class will be the new CUP-generated preprocessor.
|
|
//
|
|
public class PdePreprocessor {
|
|
|
|
public PdePreprocessor() {
|
|
}
|
|
|
|
public String writeJava(String name, boolean kjc) {
|
|
return "This class is currently purely abstract";
|
|
}
|
|
}
|