view C++/Tests/DynLib/Plugin.cpp @ 249:3b4ae8feca1c

Switch to GoogleTest finished #285
author David Demelier <markand@malikania.fr>
date Wed, 01 Oct 2014 14:38:25 +0200
parents 9324b9e0e7b7
children 4e17193db141
line wrap: on
line source

#include <string>

#include <DynLib.h>

extern "C" {

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

}