├── .github └── workflows │ └── msbuild.yml ├── README.md ├── conf └── PreAndPostBillWrapper.conf ├── confirm.conf ├── debug ├── PreAndPostBillWrapper.o ├── PreAndPostBillWrapperMain.o └── TaxCalculation.o ├── include ├── AccountTermination.h ├── AdvancePayCreditNote.h ├── AutoAdjustment.h ├── AutoDebit.h ├── BillCycleChange.h ├── ConfirmStatusMarker.h ├── Confirmation.h ├── CreditControlComponent.h ├── CreditNote.h ├── CycleSummaryStatus.h ├── DisablePrepaidBilling.h ├── Dunning.h ├── InvoicePosting.h ├── PreAndPostBillWrapper.h └── TaxCalculation.h ├── makefiles ├── create_preAndPostBillCheckLib_linux ├── create_preAndPostBillCheckLib_solaris ├── makefile_preAndPostBillCheck_linux └── makefile_preAndPostBillCheck_solaris └── source ├── PreAndPostBillWrapper.cpp └── PreAndPostBillWrapperMain.cpp /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/README.md -------------------------------------------------------------------------------- /conf/PreAndPostBillWrapper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/conf/PreAndPostBillWrapper.conf -------------------------------------------------------------------------------- /confirm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/confirm.conf -------------------------------------------------------------------------------- /debug/PreAndPostBillWrapper.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/debug/PreAndPostBillWrapper.o -------------------------------------------------------------------------------- /debug/PreAndPostBillWrapperMain.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/debug/PreAndPostBillWrapperMain.o -------------------------------------------------------------------------------- /debug/TaxCalculation.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/debug/TaxCalculation.o -------------------------------------------------------------------------------- /include/AccountTermination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/include/AccountTermination.h -------------------------------------------------------------------------------- /include/AdvancePayCreditNote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/include/AdvancePayCreditNote.h -------------------------------------------------------------------------------- /include/AutoAdjustment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/include/AutoAdjustment.h -------------------------------------------------------------------------------- /include/AutoDebit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/include/AutoDebit.h -------------------------------------------------------------------------------- /include/BillCycleChange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/include/BillCycleChange.h -------------------------------------------------------------------------------- /include/ConfirmStatusMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/include/ConfirmStatusMarker.h -------------------------------------------------------------------------------- /include/Confirmation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/include/Confirmation.h -------------------------------------------------------------------------------- /include/CreditControlComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/include/CreditControlComponent.h -------------------------------------------------------------------------------- /include/CreditNote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/include/CreditNote.h -------------------------------------------------------------------------------- /include/CycleSummaryStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/include/CycleSummaryStatus.h -------------------------------------------------------------------------------- /include/DisablePrepaidBilling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/include/DisablePrepaidBilling.h -------------------------------------------------------------------------------- /include/Dunning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/include/Dunning.h -------------------------------------------------------------------------------- /include/InvoicePosting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/include/InvoicePosting.h -------------------------------------------------------------------------------- /include/PreAndPostBillWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/include/PreAndPostBillWrapper.h -------------------------------------------------------------------------------- /include/TaxCalculation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/include/TaxCalculation.h -------------------------------------------------------------------------------- /makefiles/create_preAndPostBillCheckLib_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/makefiles/create_preAndPostBillCheckLib_linux -------------------------------------------------------------------------------- /makefiles/create_preAndPostBillCheckLib_solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/makefiles/create_preAndPostBillCheckLib_solaris -------------------------------------------------------------------------------- /makefiles/makefile_preAndPostBillCheck_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/makefiles/makefile_preAndPostBillCheck_linux -------------------------------------------------------------------------------- /makefiles/makefile_preAndPostBillCheck_solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/makefiles/makefile_preAndPostBillCheck_solaris -------------------------------------------------------------------------------- /source/PreAndPostBillWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/source/PreAndPostBillWrapper.cpp -------------------------------------------------------------------------------- /source/PreAndPostBillWrapperMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sroycho4/ML-based-RFID-Blocking/HEAD/source/PreAndPostBillWrapperMain.cpp --------------------------------------------------------------------------------