Hydrogen Framework  1.3.1
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events
hDebug.WatchedItem Class Reference

Public Types

enum  ItemType { ItemType.String = 0, ItemType.Integer = 1, ItemType.Float = 2, ItemType.Boolean = 3 }
 

Public Member Functions

 WatchedItem (ItemType type, string key, string data)
 

Public Attributes

string Key
 The index used to store this WatchedItem in the WatchedItems dictionary. More...
 
ItemType Type
 What type of item is the data "supposed" to be, as it is stored as a string for output purposes. More...
 

Properties

string Data [get, set]
 
string Output [get]
 
int OutputPaddedSize [get, set]
 

Detailed Description

Definition at line 855 of file hDebug.cs.

Member Enumeration Documentation

Enumerator
String 
Integer 
Float 
Boolean 

Definition at line 880 of file hDebug.cs.

Constructor & Destructor Documentation

hDebug.WatchedItem.WatchedItem ( ItemType  type,
string  key,
string  data 
)

Definition at line 873 of file hDebug.cs.

874  {
875  Type = type;
876  Key = key;
877  Data = data;
878  }
ItemType Type
What type of item is the data "supposed" to be, as it is stored as a string for output purposes...
Definition: hDebug.cs:867
string Key
The index used to store this WatchedItem in the WatchedItems dictionary.
Definition: hDebug.cs:863

Member Data Documentation

string hDebug.WatchedItem.Key

The index used to store this WatchedItem in the WatchedItems dictionary.

This is whats used to identify the value displayed on the watch list.

Definition at line 863 of file hDebug.cs.

ItemType hDebug.WatchedItem.Type

What type of item is the data "supposed" to be, as it is stored as a string for output purposes.

Definition at line 867 of file hDebug.cs.

Property Documentation

string hDebug.WatchedItem.Data
getset

Definition at line 888 of file hDebug.cs.

string hDebug.WatchedItem.Output
get

Definition at line 898 of file hDebug.cs.

int hDebug.WatchedItem.OutputPaddedSize
getset

Definition at line 904 of file hDebug.cs.