Skip to content

Instantly share code, notes, and snippets.

@ox1111
Created March 20, 2019 01:09
Show Gist options
  • Save ox1111/25fc282d01f7633238765bc4d1f235b6 to your computer and use it in GitHub Desktop.
Save ox1111/25fc282d01f7633238765bc4d1f235b6 to your computer and use it in GitHub Desktop.
#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