mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
11 lines
203 B
C++
11 lines
203 B
C++
#pragma once
|
|
#include "common.hpp"
|
|
#include "tags/context.hpp"
|
|
POLYBAR_NS
|
|
|
|
class renderer_interface {
|
|
public:
|
|
virtual void render_offset(const tags::context& ctxt, int pixels) = 0;
|
|
};
|
|
|
|
POLYBAR_NS_END
|