example3_alternative_with_pragma.cpp

1
2
3
4
5
6
7
// myheader.h
#pragma once

struct MyStruct {
    int x;
    int y;
};
Back to include_guards