Skip to content

Instantly share code, notes, and snippets.

@truNEET
Last active August 29, 2015 14:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save truNEET/5ace7c2503fe516150b7 to your computer and use it in GitHub Desktop.
Save truNEET/5ace7c2503fe516150b7 to your computer and use it in GitHub Desktop.
#include <gtorrent/Core.hpp>
#include <memory>
using namespace std;
int main(int argc, char **argv)
{
shared_ptr<gt::Core> core = make_shared<gt::Core>();
core->addTorrent("file.torrent");
while (core->isRunning())
{
/* Main Loop */
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment