| 123456789101112131415161718192021 |
- #include "OtherUnderscoreExtra.hpp"
- #include "OtherUnderscoreExtra_p.hpp"
- OtherUnderscoreExtraPrivate::OtherUnderscoreExtraPrivate()
- {
- }
- OtherUnderscoreExtraPrivate::~OtherUnderscoreExtraPrivate()
- {
- }
- OtherUnderscoreExtra::OtherUnderscoreExtra()
- : d(new OtherUnderscoreExtraPrivate)
- {
- }
- OtherUnderscoreExtra::~OtherUnderscoreExtra()
- {
- delete d;
- }
|