You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
500 B
C++
31 lines
500 B
C++
#include "GraphEventOperator.h"
|
|
|
|
namespace EventOper
|
|
{
|
|
void GraphEventOperator::updateAll()
|
|
{
|
|
|
|
}
|
|
|
|
void GraphEventOperator::updateSingle(int postDataID)
|
|
{
|
|
Q_UNUSED(postDataID);
|
|
}
|
|
|
|
void GraphEventOperator::updateLight(int dataID)
|
|
{
|
|
Q_UNUSED(dataID);
|
|
}
|
|
|
|
void GraphEventOperator::updateShow(int postDataID, bool isShow)
|
|
{
|
|
Q_UNUSED(postDataID);
|
|
Q_UNUSED(isShow);
|
|
}
|
|
|
|
void GraphEventOperator::reRender()
|
|
{
|
|
|
|
}
|
|
}
|