Beispiel #1
0
 /** Swaps any internal references From aggregator To aggregator. Used when cloning */
 public void SwapAggregator(FAggregator From, FAggregator To)
 {
 }
Beispiel #2
0
 /** Return true if this capture should be recalculated if the given aggregator has changed */
 public bool ShouldRefreshLinkedAggregator(FAggregator ChangedAggregator)
 {
     return(false);
 }
Beispiel #3
0
 /**
  * Attempts to populate the specified aggregator with all of the mods of the backing captured aggregator. Can fail if the spec doesn't have
  * a valid capture yet.
  *
  * @param OutAggregatorToAddTo	[OUT] Aggregator with mods appended, if possible
  *
  * @return True if the aggregator had mods successfully added to it, false if it did not
  */
 public bool AttemptAddAggregatorModsToAggregator(FAggregator OutAggregatorToAddTo)
 {
     return(false);
 }
Beispiel #4
0
 /**
  * Attempts to populate the specified aggregator with a snapshot of the backing captured aggregator. Can fail if the spec doesn't have
  * a valid capture yet.
  *
  * @param OutAggregatorSnapshot	[OUT] Snapshotted aggregator, if possible
  *
  * @return True if the aggregator was successfully snapshotted, false if it was not
  */
 public bool AttemptGetAttributeAggregatorSnapshot(FAggregator OutAggregatorSnapshot)
 {
     return(false);
 }
 public void AddModsFrom(FAggregator SourceAggregator)
 {
 }
 public void TakeSnapshotOf(FAggregator AggToSnapshot)
 {
 }