fork download
  1. #ifndef RAIL_H
  2. #define RAIL_H
  3.  
  4. #include "loadcell.h";
  5.  
  6. class Rail
  7. {
  8. public:
  9. Rail();
  10.  
  11. //Getters
  12. int getNumOfAttachedCells();
  13.  
  14. //Setters
  15. void attachLoadCell();
  16.  
  17.  
  18. private:
  19. int numOfAttachedCells;
  20. LoadCell attachedLoadCells_[2];
  21.  
  22. };
  23.  
  24. #endif // RAIL_H
  25.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty