thardware.h 200 B

123456789101112131415
  1. #ifndef THARDWARE_H
  2. #define THARDWARE_H
  3. #include <string>
  4. namespace TC {
  5. class THardWare
  6. {
  7. public:
  8. THardWare();
  9. static std::string machineCode();
  10. };
  11. } // namespace TC
  12. #endif // THARDWARE_H