Files
fluxengine/lib/proto.h

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