git.fiddlerwoaroof.com
system.h
23c0bd4d
 /* Copyright (C) CJ Affiliate
  *
  * You may use, distribute and modify this code under  the
  * terms of the  GNU General Public License  version 2  or
  * later.
  *
  * You should have received a copy of the license with this
  * file. If not, you will find a copy in the "LICENSE" file
  * at https://github.com/cjdev/dual-control.
  */
 
2587e1ec
 #ifndef SYSTEM_H_
 #define SYSTEM_H_
 
 #include <memory>
 
 #include "sys_time.h"
 #include "sys_stdlib.h"
 
23c0bd4d
 class system
 {
 public:
     system (const stdlib &stdlib, const sys_time &time);
2587e1ec
 };
 
 #endif
23c0bd4d