mirror of
https://github.com/boostorg/fiber.git
synced 2026-02-21 15:02:29 +00:00
33 lines
917 B
C++
33 lines
917 B
C++
/*
|
|
* Boost.Extension / hello world versions implementations
|
|
*
|
|
* (C) Copyright Mariano G. Consoni 2007
|
|
* Distributed under the Boost Software License, Version 1.0. (See
|
|
* accompanying file LICENSE_1_0.txt or copy at
|
|
* http://www.boost.org/LICENSE_1_0.txt)
|
|
*
|
|
* See http://www.boost.org/ for latest version.
|
|
*/
|
|
|
|
|
|
#include "../word.hpp"
|
|
#include <boost/extension/extension.hpp>
|
|
#include <boost/extension/factory_map.hpp>
|
|
|
|
class world : public word
|
|
{
|
|
public:
|
|
virtual const char * get_val(){return "world! v2";}
|
|
};
|
|
class hello : public word
|
|
{
|
|
public:
|
|
virtual const char * get_val(){return "| v2 hello";}
|
|
};
|
|
extern "C" void BOOST_EXTENSION_EXPORT_DECL
|
|
extension_export_word(boost::extensions::factory_map & fm)
|
|
{
|
|
fm.get<word, int>()[21].set<hello>(); // int could be used as version (v2 word 1)
|
|
fm.get<word, int>()[22].set<world>(); // int could be used as version (v2 word 2)
|
|
}
|