00001
00002 #ifndef CObjFunction_h
00003 #define CObjFunction_h 1
00004
00005
00006 #include "jic/task/CMessageBlock.hpp"
00007
00008 namespace TASK {
00009
00010
00011
00012 class CObjFunction
00013 {
00014
00015 public:
00016 ~CObjFunction();
00017
00018
00019
00020 protected:
00021 CObjFunction();
00022
00023
00024
00025 private:
00026 CObjFunction(const CObjFunction &right);
00027
00028 CObjFunction & operator=(const CObjFunction &right);
00029
00030
00031
00032 private:
00033
00034
00035 };
00036
00037
00038
00039 inline CObjFunction::CObjFunction()
00040 {
00041 }
00042
00043 inline CObjFunction::CObjFunction(const CObjFunction &right)
00044 {
00045 }
00046
00047 inline CObjFunction::~CObjFunction()
00048 {
00049 }
00050
00051 inline CObjFunction & CObjFunction::operator=(const CObjFunction &right)
00052 {
00053 }
00054
00055 }
00056
00057 #endif