Corrected package and some imports in CppTarget.java.

This commit is contained in:
Mike Lischke 2016-03-06 19:34:45 +01:00
parent e6b4ea736d
commit a524ca3232
1 changed files with 4 additions and 1 deletions

View File

@ -28,9 +28,12 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.antlr.v4.codegen;
package org.antlr.v4.codegen.target;
import org.antlr.v4.Tool;
import org.antlr.v4.tool.Grammar;
import org.antlr.v4.codegen.CodeGenerator;
import org.antlr.v4.codegen.Target;
import org.antlr.v4.tool.ast.GrammarAST;
import org.stringtemplate.v4.ST;
import org.stringtemplate.v4.STGroup;