/**
 *
 *  [[filename]].cc
 *
 */

#include "[[filename]].h"

using namespace drogon;
<%c++auto namespaceStr=@@.get<std::string>("namespaceString");
if(!namespaceStr.empty())
$$<<"using namespace "<<namespaceStr<<";\n";
%>

void [[className]]::initAndStart(const Json::Value &config)
{
    /// Initialize and start the plugin
}

void [[className]]::shutdown() 
{
    /// Shutdown the plugin
}
