summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/class/src/hello.mpp
blob: 9e4ecd960c82f1caf9826b2811f7eb3bdb5510ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export module hello;

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