#ifndef CAPTCHA_HPP #define CAPTCHA_HPP #include struct captcha { std::string text; // the text the user has to guess std::string base64; // the GIF in BASE64 encoding }; captcha generateCaptcha( ); #endif