mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 01:36:01 +02:00
Added interfaces for different types of variable's values.
This commit is contained in:
parent
9089dd4dcc
commit
1b89c22226
4 changed files with 66 additions and 0 deletions
|
@ -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
|
||||
{
|
||||
}
|
|
@ -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
|
||||
{
|
||||
|
||||
}
|
|
@ -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
|
||||
{
|
||||
}
|
|
@ -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
|
||||
{
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue