view modules/dynlib/test/plugin.cpp @ 548:f48bb09bccc7

Misc: huge cleanup, switch to spaces
author David Demelier <markand@malikania.fr>
date Wed, 15 Jun 2016 13:13:26 +0200
parents 78f296a7b2e5
children
line wrap: on
line source

#include <string>

#include <dynlib.hpp>

extern "C" {

void DYNLIB_EXPORT initialize(std::string &result)
{
    result = "Hello World";
}

}