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.
25 lines
407 B
C++
25 lines
407 B
C++
#include "FITKAbstractViewAdaptor.h"
|
|
|
|
|
|
namespace Adaptor
|
|
{
|
|
FITKAbstractViewAdaptor::~FITKAbstractViewAdaptor()
|
|
{
|
|
}
|
|
|
|
|
|
QString FITKAbstractViewAdaptor::getAdaptorClass()
|
|
{
|
|
//返回错误值
|
|
return QString();
|
|
}
|
|
|
|
Adaptor::FITKAdaptorType FITKAbstractViewAdaptor::getAdaptorType()
|
|
{
|
|
//返回视图类
|
|
return FITKAdaptorType::AdaTView;
|
|
}
|
|
|
|
}
|
|
|