env.h 304 B

123456789101112131415161718
  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 _ENV_H
  5. #define _ENV_H
  6. #include <stdlib.h>
  7. class Env
  8. {
  9. public:
  10. Env();
  11. ~Env();
  12. };
  13. #endif