#pragma once

/**
 * This exception isn't really thrown anywhere.
 * @deprecated This whole class is deprecated.
 */
class TestDocException2
{
protected:
    /**
     * This is a deprecated field.
     * @deprecated Just testing deprecation for a field.
     */
    int someDeprecatedField;


    /**
     * This is another deprecated field.
     * @deprecated Just another test of deprecation for a field.
     */
    float anotherDeprecatedField;
};