// foo.h

#include <istream>

class Foo {
public:
    // Equiv to typedef int Age
    using Age = int;

    Foo();
    Foo(std::istream& is);
    ~Foo();

    void member_function();
};