egg (or chicken)
Signed-off-by: Arthur Khachaturov <me@wzray.ru>
This commit is contained in:
commit
8ed52d1c79
20 changed files with 11719 additions and 0 deletions
18
puppy/include/PromtCtlDirection.hpp
Normal file
18
puppy/include/PromtCtlDirection.hpp
Normal file
|
@ -0,0 +1,18 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <windows.h>
|
||||
#include "COMWrapper.hpp"
|
||||
|
||||
class PromtCtlDirection : COMWrapper {
|
||||
public:
|
||||
const void *m_instance = nullptr;
|
||||
static constexpr char m_classname[] = "PromtCtlDirection";
|
||||
|
||||
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