SHOGUN
v3.2.0
|
00001 /* 00002 * This program is free software; you can redistribute it and/or modify 00003 * it under the terms of the GNU General Public License as published by 00004 * the Free Software Foundation; either version 3 of the License, or 00005 * (at your option) any later version. 00006 * 00007 * Written (W) 2013 Soumyajit De 00008 */ 00009 00010 #ifndef JOB_RESULT_H_ 00011 #define JOB_RESULT_H_ 00012 00013 #include <shogun/lib/config.h> 00014 #include <shogun/base/SGObject.h> 00015 00016 namespace shogun 00017 { 00018 00020 class CJobResult : public CSGObject 00021 { 00022 public: 00024 CJobResult() 00025 : CSGObject() 00026 { 00027 SG_GCDEBUG("%s created (%p)\n", this->get_name(), this) 00028 } 00029 00031 virtual ~CJobResult() 00032 { 00033 SG_GCDEBUG("%s destroyed (%p)\n", this->get_name(), this) 00034 } 00035 00037 virtual const char* get_name() const 00038 { 00039 return "JobResult"; 00040 } 00041 }; 00042 00043 } 00044 00045 #endif // JOB_RESULT_H_