More tie ins.

This commit is contained in:
JoelKatz
2012-11-19 15:41:45 -08:00
parent 08f271443d
commit 19d73bd477
4 changed files with 18 additions and 4 deletions

View File

@@ -1,6 +1,5 @@
#include "JobQueue.h"
#include <boost/make_shared.hpp>
#include <boost/foreach.hpp>
#include <boost/bind.hpp>
#include <boost/thread.hpp>
@@ -21,6 +20,8 @@ const char* Job::toString(JobType t)
case jtPROPOSAL_t: return "trustedProposal";
case jtADMIN: return "administration";
case jtDEATH: return "jobOfDeath";
case jtCLIENT: return "clientCommand";
case jtPEER: return "peerCommand";
default: assert(false); return "unknown";
}
}