1 28 29 package org.objectweb.util.cpp.api; 30 31 import java.io.File ; 32 import java.io.OutputStream ; 33 34 42 public interface PreprocessorOperations 43 { 44 51 public java.io.File  52 preprocess(String fileName); 53 54 62 public boolean 63 preprocess(String fileName, 64 File tmpFile); 65 66 72 public boolean 73 preprocess(String fileName, 74 OutputStream output); 75 } 76 | Popular Tags |