otsdaq  v2_04_01
FEInterfaceConfigurationBase.h
1 #ifndef _ots_FEInterfaceTableBase_h_
2 #define _ots_FEInterfaceTableBase_h_
3 
4 #include "otsdaq-coreTableCore/TableBase.h"
5 
6 namespace ots
7 {
9 {
10  public:
11  FEInterfaceTableBase(std::string configurationName) : TableBase(configurationName)
12  {
13  ;
14  }
15  virtual ~FEInterfaceTableBase(void) { ; }
16 
17  virtual std::string getStreamingIPAddress(std::string interface) const
18  {
19  return "127.0.0.1";
20  }
21  virtual unsigned int getStreamingPort(std::string interface) const { return 3000; }
22 
23  private:
24 };
25 } // namespace ots
26 #endif