ATLAS Offline Software
Public Member Functions | List of all members
VP1GeometryPlugin_VP1AutoFactory Class Reference

#include <VP1GeometryPlugin_VP1AutoFactory.h>

Inheritance diagram for VP1GeometryPlugin_VP1AutoFactory:
Collaboration diagram for VP1GeometryPlugin_VP1AutoFactory:

Public Member Functions

virtual QStringList channelWidgetsProvided () const
 
virtual IVP1ChannelWidgetgetChannelWidget (const QString &channelwidget)
 

Detailed Description

Definition at line 14 of file VP1GeometryPlugin_VP1AutoFactory.h.

Member Function Documentation

◆ channelWidgetsProvided()

QStringList VP1GeometryPlugin_VP1AutoFactory::channelWidgetsProvided ( ) const
virtual

Implements IVP1ChannelWidgetFactory.

Definition at line 10 of file VP1GeometryPlugin_VP1AutoFactory.cxx.

11 {
12  return QStringList()
13  << "Geometry"
14  ;
15 }

◆ getChannelWidget()

IVP1ChannelWidget * VP1GeometryPlugin_VP1AutoFactory::getChannelWidget ( const QString &  channelwidget)
virtual

Implements IVP1ChannelWidgetFactory.

Definition at line 17 of file VP1GeometryPlugin_VP1AutoFactory.cxx.

18 {
19  if (channelwidget == "Geometry")
20  return new VP1GeometryChannel();
21 
22  return 0;
23 }

The documentation for this class was generated from the following files:
VP1GeometryChannel
Definition: VP1GeometryChannel.h:20