mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
15 lines
298 B
C++
15 lines
298 B
C++
#ifndef PROTO_H
|
|
#define PROTO_H
|
|
|
|
#include <google/protobuf/message.h>
|
|
#include "lib/config.pb.h"
|
|
|
|
extern void setProtoByString(google::protobuf::Message* message, const std::string& path, const std::string& value);
|
|
|
|
extern std::set<int> iterate(const Range& range);
|
|
|
|
extern Config config;
|
|
|
|
#endif
|
|
|