#ifndef INTRO_CONTENT_HPP #define INTRO_CONTENT_HPP #include "master_content.hpp" namespace content { struct intro : public master { public: intro( ) : master( ) {} }; } #endif