Program Listing for File RequiredUserAction.h

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

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

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

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

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

#ifndef SICK_SAFETYSCANNERS_BASE_DATASTRUCTURE_REQUIREDUSERACTION_H
#define SICK_SAFETYSCANNERS_BASE_DATASTRUCTURE_REQUIREDUSERACTION_H

#include <iostream>


namespace sick {
namespace datastructure {

class RequiredUserAction
{
public:
  RequiredUserAction();

  bool getConfirmConfiguration() const;
  void setConfirmConfiguration(bool confirm_configuration);

  bool getCheckConfiguration() const;
  void setCheckConfiguration(bool check_configuration);

  bool getCheckEnvironment() const;
  void setCheckEnvironment(bool check_environment);

  bool getCheckApplicationInterfaces() const;
  void setCheckApplicationInterfaces(bool check_application_interfaces);

  bool getCheckDevice() const;
  void setCheckDevice(bool check_device);

  bool getRunSetupProcedure() const;
  void setRunSetupProcedure(bool run_setup_procedure);

  bool getCheckFirmware() const;
  void setCheckFirmware(bool check_firmware);

  bool getWait() const;
  void setWait(bool wait);

private:
  bool m_confirm_configuration;
  bool m_check_configuration;
  bool m_check_environment;
  bool m_check_application_interfaces;
  bool m_check_device;
  bool m_run_setup_procedure;
  bool m_check_firmware;
  bool m_wait;
};


} // namespace datastructure
} // namespace sick

#endif // SICK_SAFETYSCANNERS_BASE_DATASTRUCTURE_REQUIREDUSERACTION_H