plugin.cc
Go to the documentation of this file.
00001 #include "plugin.hh"
00002 
00003 using namespace std;
00004 
00005 Plugin::Plugin(const std::string& name, const std::string& type)
00006     : m_name(name), m_type(type) {}
00007 Plugin::~Plugin() {}
00008 
00009 std::string Plugin::getName() const { return m_name; }
00010 std::string Plugin::getType() const { return m_type; }
00011 std::list<std::string> Plugin::getOptions() const { return list<string>(); }
00012 
00013 


typelib
Author(s): Sylvain Joyeux/sylvain.joyeux@m4x.org
autogenerated on Thu Jan 2 2014 11:38:41