Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/corext/template/c/CppContextType.java')
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/corext/template/c/CppContextType.java47
1 files changed, 0 insertions, 47 deletions
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/corext/template/c/CppContextType.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/corext/template/c/CppContextType.java
deleted file mode 100644
index 540b2f446ac..00000000000
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/corext/template/c/CppContextType.java
+++ /dev/null
@@ -1,47 +0,0 @@
-package org.eclipse.cdt.internal.corext.template.c;
-
-/*
- * (c) Copyright IBM Corp. 2000, 2001.
- * All Rights Reserved.
- */
-
-import org.eclipse.cdt.internal.corext.template.TemplateContext;
-
-/**
- * A context type for javadoc.
- */
-public class CppContextType extends CompilationUnitContextType {
-
- /**
- * Creates a C context type.
- */
- public CppContextType() {
- super("C++");
-
- // global
- addVariable(new GlobalVariables.Cursor());
- addVariable(new GlobalVariables.Dollar());
- addVariable(new GlobalVariables.Date());
- addVariable(new GlobalVariables.Time());
- addVariable(new GlobalVariables.User());
-
- // compilation unit
- addVariable(new File());
- /* addVariable(new Method());
- addVariable(new ReturnType());
- addVariable(new Arguments());
- addVariable(new Type());
- addVariable(new Package()); */
- addVariable(new Project());
- // @@@ Need to add some specific C ones
- }
-
- /*
- * @see ContextType#createContext()
- */
- public TemplateContext createContext() {
- return new CContext(this, fString, fPosition, fCompilationUnit);
- }
-
-}
-

Back to the top