Add a note about how I generated list of classes

This commit is contained in:
Scott Wheeler 2023-07-30 06:55:23 +02:00
parent f903e1ad71
commit 965260e3cb

View File

@ -140,6 +140,9 @@ class TestSizes : public CppUnit::TestFixture
public:
void testSizes()
{
// Class list was built by generating XML docs with Doxygen, and then running:
// $ grep kind=\"class\" index.xml | sed -E -e 's/(.*<name>|<\/name>.*)//g'
CPPUNIT_ASSERT_EQUAL(classSize(1, true), sizeof(TagLib::APE::File));
CPPUNIT_ASSERT_EQUAL(classSize(0, true), sizeof(TagLib::APE::Footer));
CPPUNIT_ASSERT_EQUAL(classSize(0, true), sizeof(TagLib::APE::Item));