1
0
forked from 0ad/0ad
0ad/source/simulation2/docs/CCmpExample.cpp
Ykkrosh d6ab843f9d # Documentation updates
This was SVN commit r7457.
2010-04-15 19:59:07 +00:00

62 lines
1.1 KiB
C++

/* Copyright (C) 2010 Wildfire Games.
* ...the usual copyright header...
*/
#include "precompiled.h"
#include "simulation2/system/Component.h"
#include "ICmpExample.h"
// ... any other includes needed ...
class CCmpExample : public ICmpExample
{
public:
static void ClassInit(CComponentManager& componentManager)
{
// ...
}
DEFAULT_COMPONENT_ALLOCATOR(Example)
// ... member variables ...
static std::string GetSchema()
{
return "<ref name='anything'/>";
}
virtual void Init(const CSimContext& context, const CParamNode& paramNode)
{
// ...
}
virtual void Deinit(const CSimContext& context)
{
// ...
}
virtual void Serialize(ISerializer& serialize)
{
// ...
}
virtual void Deserialize(const CSimContext& context, const CParamNode& paramNode, IDeserializer& deserialize)
{
// ...
}
virtual void HandleMessage(const CSimContext& context, const CMessage& msg, bool UNUSED(global))
{
// ...
}
// ... Implementation of interface functions: ...
virtual int DoWhatever(int x, int y)
{
return x+y;
}
};
REGISTER_COMPONENT_TYPE(Example)