1#ifndef SQUIDSTATLIBRARY_AISABSTRACTELEMENT_H
2#define SQUIDSTATLIBRARY_AISABSTRACTELEMENT_H
4#include "AisSquidstatGlobal.h"
8class AbstractBuilderElement;
15class SQUIDSTATLIBRARY_EXPORT AisAbstractElement {
17 virtual ~AisAbstractElement();
24 virtual QString getName()
const = 0;
31 virtual QStringList getCategory()
const = 0;
35 std::shared_ptr<AbstractBuilderElement> m_data;
this class is used to create custom experiments. A custom experiment contains one or more elements....
Definition: AisExperiment.h:19