21 lines
275 B
C++
21 lines
275 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)());
|
|
};
|