Update of /cvsroot/playerstage/code/gazebo/server/sensors
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11622/server/sensors
Added Files:
Tag: ogre
SConscript Sensor.cc Sensor.hh
Log Message:
Added new gazebo files
--- NEW FILE: Sensor.hh ---
#ifndef SENSOR_HH
#define SENSOR_HH
class Sensor
{
public: Sensor();
public: virtual ~Sensor();
};
#endif
--- NEW FILE: SConscript ---
#Import variable
Import('env staticObjs sharedObjs')
dirs = Split('camera')
for subdir in dirs :
SConscript('%s/SConscript' % subdir)
sources = Split('Sensor.cc')
staticObjs.append( env.StaticObject(sources) )
sharedObjs.append( env.SharedObject(sources) )
--- NEW FILE: Sensor.cc ---
#include "Sensor.hh"
Sensor::Sensor()
{
}
Sensor::~Sensor()
{
}
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Playerstage-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/playerstage-commit