You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
454 B
19 lines
454 B
#ifndef DISPLAYPROVIDERCREATOR
|
|
#define DISPLAYPROVIDERCREATOR
|
|
|
|
#include "viewmodel/displayString/IDisplayProvider.h"
|
|
#include "viewmodel/table/ELogColumn.h"
|
|
|
|
class IDisplayProviderCreator
|
|
{
|
|
public:
|
|
virtual ~IDisplayProviderCreator()
|
|
{
|
|
}
|
|
|
|
virtual DisplayStringProvider_ptr createDisplayProvider(ELogColumn column) const = 0;
|
|
};
|
|
|
|
using DisplayProviderCreator_ptr = std::shared_ptr<IDisplayProviderCreator>;
|
|
|
|
#endif //DISPLAYPROVIDERCREATOR
|
|
|