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.
37 lines
1023 B
37 lines
1023 B
14 years ago
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
||
14 years ago
|
//
|
||
|
// This is free software; you can redistribute it and/or modify it under
|
||
|
// the terms of the GNU Lesser General Public License as published by the
|
||
|
// Free Software Foundation; either version 2.1 of the License, or (at
|
||
|
// your option) any later version.
|
||
|
//
|
||
|
|
||
|
/// @file AP_MetaClass.cpp
|
||
|
/// Abstract meta-class from which other AP classes may inherit.
|
||
|
/// Provides type introspection and some basic protocols that can
|
||
|
/// be implemented by subclasses.
|
||
|
|
||
|
#include "AP_MetaClass.h"
|
||
|
|
||
14 years ago
|
// Default ctor, currently does nothing
|
||
14 years ago
|
AP_Meta_class::AP_Meta_class(void)
|
||
14 years ago
|
{
|
||
|
}
|
||
|
|
||
|
// Default dtor, currently does nothing but must be defined in order to ensure that
|
||
|
// subclasses not overloading the default virtual dtor still have something in their
|
||
|
// vtable.
|
||
14 years ago
|
AP_Meta_class::~AP_Meta_class()
|
||
14 years ago
|
{
|
||
|
}
|
||
|
|
||
14 years ago
|
size_t AP_Meta_class::serialize(void *buf, size_t bufSize) const
|
||
14 years ago
|
{
|
||
14 years ago
|
return 0;
|
||
14 years ago
|
}
|
||
|
|
||
14 years ago
|
size_t AP_Meta_class::unserialize(void *buf, size_t bufSize)
|
||
14 years ago
|
{
|
||
14 years ago
|
return 0;
|
||
14 years ago
|
}
|