mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
15 lines
290 B
C++
15 lines
290 B
C++
|
#pragma once
|
||
|
|
||
|
#include "common.hpp"
|
||
|
#include "errors.hpp"
|
||
|
#include "ipc/msg.hpp"
|
||
|
|
||
|
POLYBAR_NS
|
||
|
|
||
|
namespace ipc {
|
||
|
vector<uint8_t> encode(const type_t type, const vector<uint8_t>& data = {});
|
||
|
vector<uint8_t> encode(const type_t type, const string& data);
|
||
|
} // namespace ipc
|
||
|
|
||
|
POLYBAR_NS_END
|