Files
resiprocate/p2p/CertDoneEvent.hxx
Cullen Jennings fbfb03ac69 added briefs for classes derviced from Event
git-svn-id: https://svn.resiprocate.org/rep/resiprocate/main@8089 ddefafc4-47db-0310-ae44-fa13212b10f2
2008-06-19 02:58:24 +00:00

39 lines
589 B
C++

#ifndef P2P_CertDone_hxx
#define P2P_CertDone_hxx
#include "rutil/Data.hxx"
#include "Event.hxx"
namespace p2p
{
class CertDone : public Event
{
public:
enum Resolution
{
Succeeded = 0,
NoNetWork,
SingerUnknown,
};
CertDone(const resip::Data& id,
Resolution resolution)
: mId(id)
{}
virtual resip::Data brief() const
{
return "CertDone";
}
private:
const resip::Data mId;
Resolution mResolution;
};
} // p2p
#endif // P2P_CertDone_hxx