LeviLamina
Loading...
Searching...
No Matches
Offer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class Offer {
6public:
7 // member variables
8 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 Offer& operator=(Offer const&);
20 Offer(Offer const&);
21 Offer();
22};
Definition Offer.h:5
Definition Alias.h:14