#pragma once class Test { int m_int; double m_double; public: static const char* name(); Test(int foo); Test(double foo); static const int COUNTDOWN[]; static const int* COUNTDOWN_PTR; static const int* countdown(); }; namespace testing { typedef Test TypeAlias; } // namespace testing typedef testing::TypeAlias TypeAlias;