capo-lite v2.0.1
Simple audio playback library
 
Loading...
Searching...
No Matches
polymorphic.hpp
Go to the documentation of this file.
1#pragma once
2
3namespace capo {
6 public:
7 Polymorphic() = default;
8 virtual ~Polymorphic() = default;
9
10 Polymorphic(Polymorphic const&) = default;
12 auto operator=(Polymorphic const&) -> Polymorphic& = default;
13 auto operator=(Polymorphic&&) -> Polymorphic& = default;
14};
15} // namespace capo
Base class for polymorphic types.
Definition polymorphic.hpp:5
virtual ~Polymorphic()=default
auto operator=(Polymorphic const &) -> Polymorphic &=default
Polymorphic(Polymorphic &&)=default
Polymorphic(Polymorphic const &)=default
Polymorphic()=default
auto operator=(Polymorphic &&) -> Polymorphic &=default
Definition buffer.hpp:7