20 lines
270 B
C++
20 lines
270 B
C++
/*
|
|
* init.hpp
|
|
*
|
|
* Created on: Jul 27, 2017
|
|
* Author: nullifiedcat
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <aftercheaders.hpp>
|
|
#include <beforecheaders.hpp>
|
|
#include <stack>
|
|
|
|
std::stack<void(*)()>& init_stack();
|
|
|
|
class InitRoutine {
|
|
public:
|
|
InitRoutine(void(*func)());
|
|
};
|