Skip to main content
summaryrefslogtreecommitdiffstats
blob: d803b75623a2b3e8731c5f3b2ac3108f8ea9319d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 *(c) Copyright QNX Software Systems Ltd. 2002.
 * All Rights Reserved.
 * 
 */
package org.eclipse.cdt.debug.internal.ui.actions;

import org.eclipse.cdt.debug.core.cdi.ICDIFormat;

/**
 * 
 * Enter type comment.
 * 
 * @since Dec 16, 2002
 */
public class NaturalVariableFormatActionDelegate extends VariableFormatActionDelegate
{
	/**
	 * Constructor for NaturalVariableFormatActionDelegate.
	 * @param format
	 */
	public NaturalVariableFormatActionDelegate()
	{
		super( ICDIFormat.NATURAL );
	}

}

Back to the top