Program Listing for File DeviceName.h

Return to documentation for file (/tmp/ws/src/sick_safetyscanners_base/include/sick_safetyscanners_base/datastructure/DeviceName.h)

// this is for emacs file handling -*- mode: c++; indent-tabs-mode: nil -*-

// -- BEGIN LICENSE BLOCK ----------------------------------------------

// -- END LICENSE BLOCK ------------------------------------------------

//----------------------------------------------------------------------
//----------------------------------------------------------------------

#ifndef SICK_SAFETYSCANNERS_BASE_DATASTRUCTURE_DEVICENAME_H
#define SICK_SAFETYSCANNERS_BASE_DATASTRUCTURE_DEVICENAME_H

#include <iostream>


namespace sick {
namespace datastructure {

class DeviceName
{
public:
  DeviceName();

  std::string getDeviceName() const;
  void setDeviceName(const std::string& device_name);

private:
  std::string m_device_name;
};


} // namespace datastructure
} // namespace sick

#endif // SICK_SAFETYSCANNERS_BASE_DATASTRUCTURE_DEVICENAME_H