Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/blame/commit/97cee1b6b03b3fe5d8df02f5ae16693bf3fb76b0/thirdparty/mera/pdf-merger/RunLengthDecode.h You should set ROOT_URL correctly, otherwise the web may not work correctly.
новые иконки в OpenBoard
OpenBoard/thirdparty/mera/pdf-merger/RunLengthDecode.h

23 lines
549 B

#ifndef RunLengthDecode_H
#define RunLengthDecode_H
#include <string>
#include "Decoder.h"
namespace merge_lib
{
// this class provides method for RunLengthDecode aaaaaencoding and decoding
class RunLengthDecode : public Decoder
{
public:
RunLengthDecode(){};
virtual ~RunLengthDecode(){};
bool encode(std::string & decoded){return false;}
bool decode(std::string & encoded);
void initialize(Object * objectWithStream){};
};
}
#endif // FLATEDECODE_H_INCLUDED