package RT::Condition::UntouchedInHours;
require RT::Condition::Generic;

use RT::Date;


@ISA = qw(RT::Condition::Generic); 


use strict;
use vars qw/@ISA/; 

sub IsApplicable {
        my $self = shift;
        if ((time()-$self->TicketObj->LastUpdatedObj->Unix)/3600 >= $self->Argument and $self->TicketObj->Owner==6) {
                return 1
        }
        else {
                return 0;
        }
}

1;
