view C++/Tests/DynLib/Plugin.cpp @ 218:9324b9e0e7b7

DynLib: add unit tests
author David Demelier <markand@malikania.fr>
date Thu, 08 May 2014 18:57:47 +0200
parents
children 4e17193db141
line wrap: on
line source

#include <string>

#include <DynLib.h>

extern "C" {

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

}