cyphesis/tests/stubs/server/stubPlayer.h
2018-04-25 21:05:59 +02:00

52 lines
No EOL
1.3 KiB
C++

// AUTOGENERATED file, created by the tool generate_stub.py, don't edit!
// If you want to add your own functionality, instead edit the stubPlayer_custom.h file.
#include "server/Player.h"
#include "stubPlayer_custom.h"
#ifndef STUB_SERVER_PLAYER_H
#define STUB_SERVER_PLAYER_H
#ifndef STUB_Player_characterError
//#define STUB_Player_characterError
int Player::characterError(const Operation &, const Atlas::Objects::Root &, OpVector &) const
{
return 0;
}
#endif //STUB_Player_characterError
#ifndef STUB_Player_Player
//#define STUB_Player_Player
Player::Player(Connection * conn, const std::string & username, const std::string & passwd, const std::string & id, long intId)
: Account(conn, username, passwd, id, intId)
{
}
#endif //STUB_Player_Player
#ifndef STUB_Player_getType
//#define STUB_Player_getType
const char* Player::getType() const
{
return nullptr;
}
#endif //STUB_Player_getType
#ifndef STUB_Player_addToMessage
//#define STUB_Player_addToMessage
void Player::addToMessage(Atlas::Message::MapType &) const
{
}
#endif //STUB_Player_addToMessage
#ifndef STUB_Player_addToEntity
//#define STUB_Player_addToEntity
void Player::addToEntity(const Atlas::Objects::Entity::RootEntity &) const
{
}
#endif //STUB_Player_addToEntity
#endif