mirror of https://github.com/lumapu/ahoy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
398 B
17 lines
398 B
#ifndef _STDINOUT_H
|
|
#define _STDINOUT_H
|
|
|
|
// no need to make an instance of this yourself
|
|
class initializeSTDINOUT
|
|
{
|
|
static size_t initnum;
|
|
public:
|
|
// Constructor
|
|
initializeSTDINOUT();
|
|
};
|
|
|
|
// Call the constructor in each compiled file this header is included in
|
|
// static means the names won't collide
|
|
static initializeSTDINOUT initializeSTDINOUT_obj;
|
|
|
|
#endif
|