21 lines
494 B
C++
21 lines
494 B
C++
/* @file Collection.hpp
|
|
*
|
|
* author: Roland Conybeare, Aug 2025
|
|
*/
|
|
|
|
#include "xo/alloc/Object.hpp"
|
|
|
|
namespace xo {
|
|
namespace obj {
|
|
class Collection : public Object {
|
|
// inherited from Object..
|
|
|
|
//virtual std::size_t _shallow_size() const override;
|
|
//virtual Object * _shallow_copy() const override;
|
|
//virtual std::size_t _forward_children() override;
|
|
};
|
|
|
|
} /*namespace obj*/
|
|
} /*namespace xo*/
|
|
|
|
/* end Collection.hpp */
|