chore: remove .clangd config, update CMakeLists, Dockerfile, and code
This commit is contained in:
parent
87a758ecd8
commit
d735a356b3
15 changed files with 76 additions and 58 deletions
|
@ -5,13 +5,17 @@
|
|||
#include "COMWrapper.hpp"
|
||||
|
||||
class PromtCtlDirection : COMWrapper {
|
||||
friend class PromtCtlDocument;
|
||||
|
||||
public:
|
||||
const void *m_instance = nullptr;
|
||||
static constexpr char m_classname[] = "PromtCtlDirection";
|
||||
|
||||
protected:
|
||||
explicit PromtCtlDirection(const void *instance) : m_instance(instance){};
|
||||
|
||||
public:
|
||||
PromtCtlDirection() = delete;
|
||||
explicit PromtCtlDirection(const void *instance) : m_instance(instance){};
|
||||
~PromtCtlDirection();
|
||||
std::wstring Translate(const std::wstring_view src) const;
|
||||
const char *classname() const override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue