Merge pull request #80 from tumi8/fix_hidden_overloaded_virtual_functions

fixed hiding of overloaded virtual functions
master
Oliver Gasser 2017-12-10 19:04:17 +01:00 committed by GitHub
commit 65e4ac9b6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ public:
virtual ~Destination() { };
virtual void receive(Emitable* e)
virtual void receive(NullEmitable* e)
{
THROWEXCEPTION("this module is no destination!");
}

View File

@ -93,7 +93,7 @@ std::string FlowLenAnalyzer::getStatistics()
return "";
}
std::string FlowLenAnalyzer::getStatisticsXML()
std::string FlowLenAnalyzer::getStatisticsXML(double interval)
{
return "";
}

View File

@ -34,7 +34,7 @@ public:
private:
virtual std::string getStatistics();
virtual std::string getStatisticsXML();
virtual std::string getStatisticsXML(double interval);
std::string flowFilename;
std::ofstream flowOutstream;