add aliases so the OneDReader proc macro compiles

Currently it's not possible to rename RXingResultPoint
to Point cleanly, since the external OneDReader proc macro
makes use of them. For the time being, simple aliases
are introduced to get the code to compile, but the plan
is to remove them at a later point.
This commit is contained in:
Vukašin Stepanović
2023-02-16 08:31:35 +00:00
parent dbc6ca4e55
commit 05e377e85b
7 changed files with 18 additions and 5 deletions

View File

@@ -17,7 +17,7 @@
use rxing_one_d_proc_derive::OneDReader;
use crate::common::{BitArray, Result};
use crate::{BarcodeFormat, Exceptions, RXingResult};
use crate::{BarcodeFormat, Exceptions, RXingResult, Point};
use super::{one_d_reader, OneDReader};