// ------------------------------------------------------------------------------------------------ #include "Common.hpp" #include "Module.hpp" // ------------------------------------------------------------------------------------------------ #include // ------------------------------------------------------------------------------------------------ namespace SqMod { // ------------------------------------------------------------------------------------------------ int SampleFunction() { OutputMessage("Hello from the sample plugin function!"); return rand(); } // ------------------------------------------------------------------------------------------------ void SampleType::SampleMethod() const { OutputMessage("I have the values %d and %d", m_MyVal, mMyNum); } } // Namespace:: SqMod