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