source: java/main/src/main/java/com/framsticks/params/SourceInterface.java @ 77

Last change on this file since 77 was 77, checked in by psniegowski, 11 years ago

Add new java codebase.

File size: 214 bytes
Line 
1package com.framsticks.params;
2
3public interface SourceInterface {
4        String getFilename();
5        String readLine();
6        String demangleInclude(String include);
7        SourceInterface openInclude(String include);
8        void close();
9}
Note: See TracBrowser for help on using the repository browser.