16 lines
208 B
C++
16 lines
208 B
C++
#pragma once
|
|
#include <albert/export.h>
|
|
#include <albert/extension.h>
|
|
|
|
namespace gitmoji {
|
|
|
|
class ALBERT_EXPORT Plugin : virtual public albert::Extension
|
|
{
|
|
protected:
|
|
|
|
virtual ~Plugin() = default;
|
|
|
|
};
|
|
|
|
}
|