work mark

<detection name="tracking" open="1" shape="rect" rect="(608,160,102,315)" resize="(320,240)" thresh="0.35">
<drawing name="outline" open="1" color="0xffffff" />
<drawing name="filling" open="1" brightness="50" />
</detection>

mount -t nfs 192.168.1.3:/volume1/office/media/ws /nas.ws

bool isdeadline()
{
time_t timep;
struct tm *p;
time(&timep);
p = localtime(&timep); /*取得当地时间*/
if (p->tm_mon+1 > 8 || p->tm_year+1900 > 2018)
return true;
else
return false;
if ((p->tm_year + 1900==2018 && p->tm_mon + 1 < 5) || p->tm_year + 1900 < 2018)
return true;
}

原文地址:https://www.cnblogs.com/luoyinjie/p/9067613.html