|
@@ -213,6 +213,38 @@ operator << (ostream &out, const EventParameter ¶m) {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+////////////////////////////////////////////////////////////////////
|
|
|
|
|
+// Function: EventStoreValue::Default Constructor
|
|
|
|
|
+// Access: Private
|
|
|
|
|
+// Description: This constructor is only for make_from_bam().
|
|
|
|
|
+////////////////////////////////////////////////////////////////////
|
|
|
|
|
+template<class Type>
|
|
|
|
|
+EventStoreValue<Type>::
|
|
|
|
|
+EventStoreValue() {
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+////////////////////////////////////////////////////////////////////
|
|
|
|
|
+// Function: EventStoreValue::Constructor
|
|
|
|
|
+// Access: Public
|
|
|
|
|
+// Description:
|
|
|
|
|
+////////////////////////////////////////////////////////////////////
|
|
|
|
|
+template<class Type>
|
|
|
|
|
+EventStoreValue<Type>::
|
|
|
|
|
+EventStoreValue(const Type &value) :
|
|
|
|
|
+ _value(value)
|
|
|
|
|
+{
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+////////////////////////////////////////////////////////////////////
|
|
|
|
|
+// Function: EventStoreValue::Destructor
|
|
|
|
|
+// Access: Public, Virtual
|
|
|
|
|
+// Description:
|
|
|
|
|
+////////////////////////////////////////////////////////////////////
|
|
|
|
|
+template<class Type>
|
|
|
|
|
+EventStoreValue<Type>::
|
|
|
|
|
+~EventStoreValue() {
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////
|
|
|
// Function: EventStoreValue::set_value
|
|
// Function: EventStoreValue::set_value
|
|
|
// Access: Public
|
|
// Access: Public
|