Example #1
0
    // Evict the specified survivor.
    public Report Evict(Shelter s)
    {
        Report r = new Report();

        s.EvictSurvivor(this);
        r.SetMessage(_name + " successfully evicted");
        return(r);
    }