- remove everyting - keep core -rename bit_utils to bits - add formatter for color - add float getters to color - start with new drivers api
16 lines
299 B
C++
16 lines
299 B
C++
#pragma once
|
|
|
|
#include <pd/common.hpp>
|
|
|
|
namespace PD {
|
|
class DriverInterface {
|
|
public:
|
|
DriverInterface(const std::string_view& name) : pName(name) {}
|
|
virtual ~DriverInterface() {}
|
|
|
|
const char* GetName() const { return pName.data(); }
|
|
|
|
private:
|
|
std::string_view pName;
|
|
};
|
|
} // namespace PD
|