MultiAgentDecisionProcess  Release 0.2.1
QFunctionForDecPOMDP.cpp
Go to the documentation of this file.
1 
28 #include "QFunctionForDecPOMDP.h"
29 
30 using namespace std;
31 
32 //Default constructor
33 
34 /*
35 QFunctionForDecPOMDP::QFunctionForDecPOMDP()
36 {
37 }
38 //Copy constructor.
39 QFunctionForDecPOMDP::QFunctionForDecPOMDP(const QFunctionForDecPOMDP& o)
40 {
41 }
42 //Destructor
43 QFunctionForDecPOMDP::~QFunctionForDecPOMDP()
44 {
45 }
46 //Copy assignment operator
47 QFunctionForDecPOMDP& QFunctionForDecPOMDP::operator= (const QFunctionForDecPOMDP& o)
48 {
49  if (this == &o) return *this; // Gracefully handle self assignment
50  // Put the normal assignment duties here...
51 
52  return *this;
53 }
54 */