module; #include export module hello; export namespace hello { class say { public: say(int data); void hello(); private: int data_; }; } // namespace hello