Newer
Older
TB_Chris / TbUT / src / .svn / text-base / TbUTIChannelMaskProvider.h.svn-base
@iaro iaro on 9 May 2016 410 bytes first attempt of automated anal
  1. /*
  2. * TbUTIIChannelMaskProvider.h
  3. *
  4. * Created on: Oct 10, 2014
  5. * Author: ADendek
  6. */
  7.  
  8. #pragma once
  9. #include <vector>
  10. #include <string>
  11. #include "TbUTDataLocations.h"
  12.  
  13.  
  14. namespace TbUT
  15. {
  16. class IChannelMaskProvider{
  17. public:
  18. virtual ~IChannelMaskProvider(){};
  19. virtual void getMaskFromFile(const std::string& p_filename=TbUT::DataLocations::MaskLocation)=0;
  20. virtual bool isMasked(int p_channel)=0;
  21. };
  22. }