move forward declaration

This commit is contained in:
2024-11-19 18:54:06 -06:00
parent 8f681b5463
commit 888b86404c
2 changed files with 3 additions and 3 deletions

View File

@@ -20,6 +20,9 @@
#include "replay.hpp"
#include <boost/lexical_cast.hpp>
// Hyperlink forward declaration
extern void launchURL(std::string url);
void cControl::setText(std::string l){
lbl = l;
}

View File

@@ -32,9 +32,6 @@ namespace ticpp {
class Node;
}
// Hyperlink forward declaration
void launchURL(std::string url);
/// Formatting properties
enum eFormat {
TXT_FRAME, ///< The control's frame style. Should be an enum from @ref eFrameStyle.