Skip to content

Commit 2f2f946

Browse files
authored
fix #include<string>
the same reason #1
1 parent 83e79ae commit 2f2f946

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

MainListener.hpp

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#ifndef HIGHLOADCUP_MAINLISTENER_H
2+
#define HIGHLOADCUP_MAINLISTENER_H
3+
4+
#include <Poco/Util/ServerApplication.h>
5+
#include <iostream>
6+
#include <string>
7+
8+
class MainListener final : public Poco::Util::ServerApplication {
9+
virtual int main(const std::vector<std::string>& args) override;
10+
};
11+
12+
13+
#endif // HIGHLOADCUP_MAINLISTENER_H

0 commit comments

Comments
 (0)