1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 09:46:02 +02:00

Added interfaces for different types of variable's values.

This commit is contained in:
Mikhail Khodjaiants 2002-08-09 21:52:13 +00:00
parent 9089dd4dcc
commit 1b89c22226
4 changed files with 66 additions and 0 deletions

View file

@ -0,0 +1,16 @@
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.core.cdi.model;
/**
*
* Represents a value of an array type.
*
* @since Aug 9, 2002
*/
public interface ICArrayValue extends ICValue
{
}

View file

@ -0,0 +1,17 @@
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.core.cdi.model;
/**
*
* Represents a value of a pointer type.
*
* @since Aug 9, 2002
*/
public interface ICPointerValue extends ICValue
{
}

View file

@ -0,0 +1,16 @@
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.core.cdi.model;
/**
*
* Represents a value of a string type.
*
* @since Aug 9, 2002
*/
public interface ICStringValue extends ICValue
{
}

View file

@ -0,0 +1,17 @@
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.core.cdi.model;
/**
*
* Represents a value of a structure type.
*
* @since Aug 9, 2002
*/
public interface ICStructureValue extends ICValue
{
}