00001 #ifndef _ots_FEInterfaceTableBase_h_
00002 #define _ots_FEInterfaceTableBase_h_
00003
00004 #include "otsdaq-coreTableCore/TableBase.h"
00005
00006 namespace ots
00007 {
00008 class FEInterfaceTableBase : public TableBase
00009 {
00010 public:
00011 FEInterfaceTableBase(std::string configurationName) : TableBase(configurationName)
00012 {
00013 ;
00014 }
00015 virtual ~FEInterfaceTableBase(void) { ; }
00016
00017 virtual std::string getStreamingIPAddress(std::string interface) const
00018 {
00019 return "127.0.0.1";
00020 }
00021 virtual unsigned int getStreamingPort(std::string interface) const { return 3000; }
00022
00023 private:
00024 };
00025 }
00026 #endif