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

This commit is contained in:
Project Nayuki 2021-07-28 17:09:18 +00:00
parent 89895daf1d
commit d4080974f2
5 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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

View File

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