Added LICENSE notices. Separated robot definition from implementation.

This commit is contained in:
2016-06-21 03:22:29 -04:00
parent dfcc650f29
commit df09ae9dfe
10 changed files with 231 additions and 56 deletions

View File

@@ -46,23 +46,4 @@ protected:
PlayerCc::RangerProxy * _r_proxy;
};
/**
* Concrete robot that implements the IAS-SS architecture as defined in:
*
* 1) R. Calvo et al. "Inverse ACO for Exploration and Surveillance in
* Unknown Environments", The Third International Conference on Advanced
* Cognitive Technologies and Applications, Rome, Italy 2011.
*
* 2) R. Calvo et al. "A Distributed, Bio-Inspired Coordination Strategy
* for Multiple Agent Systems Applied to Surveillance Tasks in Unknown
* Environments", Proc. of the IEEE IJCNN, San Jose, USA, 2011.
*/
class IASSS_Robot : Robot{
public:
IASSS_Robot(std::string hostname, uint32_t port);
virtual ~IASSS_Robot();
virtual void run();
};
#endif