You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
576 B
24 lines
576 B
11 years ago
|
/**
|
||
|
* This file is in the public domain, furnished "as is", without technical
|
||
|
* support, and with no warranty, express or implied, as to its usefulness for
|
||
|
* any purpose.
|
||
|
*
|
||
|
* Written by Justin James <justin.aj@hotmail.com>
|
||
|
*/
|
||
|
|
||
|
#if !defined _EXAMPLE_H_HEADER
|
||
|
#define _EXAMPLE_H_HEADER
|
||
|
|
||
|
#include "Jupiter/Plugin.h"
|
||
|
#include "Jupiter/Reference_String.h"
|
||
|
|
||
|
class TPlugin : public Jupiter::Plugin
|
||
|
{
|
||
|
public:
|
||
|
const Jupiter::ReadableString &getName() override { return name; }
|
||
|
|
||
|
private:
|
||
|
STRING_LITERAL_AS_NAMED_REFERENCE(name, "TemplatePlugin");
|
||
|
};
|
||
|
|
||
|
#endif // _EXAMPLE_H_HEADER
|