Renamed the C++ library source files to qrcodegen, because there's no longer a file per class, related to commit 096c70cd4d.

pull/118/head
Project Nayuki 4 years ago
parent 89895daf1d
commit d4080974f2

@ -52,7 +52,7 @@ CXXFLAGS += -std=c++11 -O
LIB = qrcodegen LIB = qrcodegen
LIBFILE = lib$(LIB).a LIBFILE = lib$(LIB).a
LIBOBJ = QrCode.o LIBOBJ = qrcodegen.o
MAINS = QrCodeGeneratorDemo QrCodeGeneratorWorker MAINS = QrCodeGeneratorDemo QrCodeGeneratorWorker
# Build all binaries # Build all binaries

@ -32,7 +32,7 @@
#include <sstream> #include <sstream>
#include <string> #include <string>
#include <vector> #include <vector>
#include "QrCode.hpp" #include "qrcodegen.hpp"
using std::uint8_t; using std::uint8_t;
using qrcodegen::QrCode; using qrcodegen::QrCode;

@ -32,7 +32,7 @@
#include <cstring> #include <cstring>
#include <iostream> #include <iostream>
#include <vector> #include <vector>
#include "QrCode.hpp" #include "qrcodegen.hpp"
using qrcodegen::QrCode; using qrcodegen::QrCode;
using qrcodegen::QrSegment; using qrcodegen::QrSegment;

@ -29,7 +29,7 @@
#include <sstream> #include <sstream>
#include <stdexcept> #include <stdexcept>
#include <utility> #include <utility>
#include "QrCode.hpp" #include "qrcodegen.hpp"
using std::int8_t; using std::int8_t;
using std::uint8_t; using std::uint8_t;
Loading…
Cancel
Save