.. _program_listing_file_src_flamegpu_model_HostFunctionDescription.cpp: Program Listing for File HostFunctionDescription.cpp ==================================================== |exhale_lsh| :ref:`Return to documentation for file ` (``src/flamegpu/model/HostFunctionDescription.cpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #include #include #include "flamegpu/model/HostFunctionDescription.h" namespace flamegpu { HostFunctionDescription::HostFunctionDescription(std::string name, FLAMEGPU_HOST_FUNCTION_POINTER host_function) { this->name = name; this->function = host_function; } HostFunctionDescription::HostFunctionDescription(std::string name, HostFunctionCallback *func_callback) { this->name = name; this->callbackObject = func_callback; } bool HostFunctionDescription::operator==(const HostFunctionDescription& rhs) const { return *this->function == *rhs.function; // Compare content is functionally the same } bool HostFunctionDescription::operator!=(const HostFunctionDescription& rhs) const { return !(*this == rhs); } std::string HostFunctionDescription::getName() { return name; } FLAMEGPU_HOST_FUNCTION_POINTER HostFunctionDescription::getFunctionPtr() const { return function; } HostFunctionCallback* HostFunctionDescription::getCallbackObject() { return callbackObject; } } // namespace flamegpu