Created
March 20, 2019 01:09
-
-
Save ox1111/25fc282d01f7633238765bc4d1f235b6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <Poco/Util/Application.h> | |
class HelloPocoApplication : public Poco::Util::Application | |
{ | |
protected: | |
virtual int main(const std::vector<std::string> &args) | |
{ | |
std::cout << "Hello, POCO C++ Libraries!" << std::endl; | |
return EXIT_OK; | |
} | |
}; | |
POCO_APP_MAIN(HelloPocoApplication); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment