Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifndef __cmtkProtocolCallback_h_included_
00033 #define __cmtkProtocolCallback_h_included_
00034
00035 #include <cmtkconfig.h>
00036
00037 #include <Registration/cmtkRegistrationCallback.h>
00038
00039 namespace
00040 cmtk
00041 {
00042
00045
00047 class ProtocolCallback :
00048 public RegistrationCallback
00049 {
00050 public:
00052 ProtocolCallback ( const char *filename = NULL, const bool debug = false );
00053
00057 virtual ~ProtocolCallback ();
00058
00060 virtual CallbackResult ExecuteWithData ( const CoordinateVector& v, const double metric );
00061
00063 virtual void Comment ( const char* comment = NULL );
00064
00065 private:
00067 FILE *fp;
00068
00070 bool Debug;
00071
00073 typedef RegistrationCallback Superclass;
00074 };
00075
00077
00078 }
00079
00080 #endif // #ifndef __cmtkProtocolCallback_h_included_