AutobiographicMemory.AM.BindCalls C# (CSharp) Method

BindCalls() public method

public BindCalls ( KB kb ) : void
kb KnowledgeBase.KB
return void
        public void BindCalls(KB kb)
        {
            kb.RegistDynamicProperty(EVENT_ID_PROPERTY_NAME, EventIdPropertyCalculator, "Returns the ids of all events that unify with the property's name");
            kb.RegistDynamicProperty(EVENT_ELAPSED_TIME_PROPERTY_NAME, EventAgePropertyCalculator, "The number of ticks passed since the event associated to [id] occured");
            kb.RegistDynamicProperty(LAST_EVENT_ID_PROPERTY_NAME, LastEventIdPropertyCalculator, "Returns the id of the last event if it unifies with the property's name");
        }