#include <smartcdo.h>
Inheritance diagram for CVC3::SmartCDO< T >:
Author: Clark Barrett
Created: Fri Nov 12 17:33:31 2004
Wrapper for CDO which automatically allocates and deletes a pointer to a CDO. This allows the copy constructor and operator= to be defined which are especially useful for storing CDO's in vectors. All operations are const to enable use as a member of CDLists.
Be careful not to delete RefCDO during pop(), since this messes up the backtracking data structures. We delay the deletion by registering each RefCDO to be notified before and after each pop(). This makes the use of SmartCDO somewhat more expensive, so use it with care.
Definition at line 52 of file smartcdo.h.
CVC3::SmartCDO< T >::SmartCDO | ( | ) | [inline] |
CVC3::SmartCDO< T >::SmartCDO | ( | Context * | context | ) | [inline] |
Create and initialize SmartCDO object at the current scope.
Definition at line 98 of file smartcdo.h.
CVC3::SmartCDO< T >::SmartCDO | ( | Context * | context, | |
const T & | data, | |||
int | scope = -1 | |||
) | [inline] |
Create and initialize SmartCDO object at the given scope.
Definition at line 101 of file smartcdo.h.
CVC3::SmartCDO< T >::~SmartCDO | ( | ) | [inline] |
CVC3::SmartCDO< T >::SmartCDO | ( | const SmartCDO< T > & | cdo | ) | [inline] |
Definition at line 108 of file smartcdo.h.
bool CVC3::SmartCDO< T >::isNull | ( | ) | const [inline] |
Check if the SmartCDO object is Null.
Definition at line 94 of file smartcdo.h.
Referenced by CVC3::SmartCDO< Unsigned >::get(), CVC3::SmartCDO< Unsigned >::operator=(), CVC3::SmartCDO< Unsigned >::set(), CVC3::SmartCDO< Unsigned >::SmartCDO(), and CVC3::SmartCDO< Unsigned >::~SmartCDO().
SmartCDO<T>& CVC3::SmartCDO< T >::operator= | ( | const SmartCDO< T > & | cdo | ) | [inline] |
Definition at line 111 of file smartcdo.h.
void CVC3::SmartCDO< T >::set | ( | const T & | data, | |
int | scope = -1 | |||
) | const [inline] |
Definition at line 120 of file smartcdo.h.
const T& CVC3::SmartCDO< T >::get | ( | ) | const [inline] |
Definition at line 124 of file smartcdo.h.
CVC3::SmartCDO< T >::operator T | ( | ) | const [inline] |
Definition at line 128 of file smartcdo.h.
const SmartCDO<T>& CVC3::SmartCDO< T >::operator= | ( | const T & | data | ) | const [inline] |
Definition at line 129 of file smartcdo.h.
RefCDO<T>* CVC3::SmartCDO< T >::d_data [private] |
Definition at line 90 of file smartcdo.h.
Referenced by CVC3::SmartCDO< Unsigned >::get(), CVC3::SmartCDO< Unsigned >::isNull(), CVC3::SmartCDO< Unsigned >::operator=(), CVC3::SmartCDO< Unsigned >::set(), CVC3::SmartCDO< Unsigned >::SmartCDO(), and CVC3::SmartCDO< Unsigned >::~SmartCDO().