remote.h 381 B

123456789101112131415161718192021
  1. // Copyright (c) 2013-2014, Alberto Corona <alberto@0x1a.us>
  2. // All rights reserved. This file is part of yabs, distributed under the BSD
  3. // 3-Clause license. For full terms please see the LICENSE file.
  4. #ifndef _REMOTE_H
  5. #define _REMOTE_H
  6. #include <string.h>
  7. #include <sys/types.h>
  8. #include <iostream>
  9. #include <fstream>
  10. class Remote
  11. {
  12. public:
  13. Remote();
  14. ~Remote();
  15. };
  16. #endif