├── .dep.inc ├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── functors.hpp ├── main.cpp ├── nbproject ├── Makefile-Debug.mk ├── Makefile-Release.mk ├── Makefile-impl.mk ├── Makefile-variables.mk ├── Package-Debug.bash ├── Package-Release.bash ├── configurations.xml ├── private │ ├── Makefile-variables.mk │ ├── configurations.xml │ ├── launcher.properties │ └── private.xml └── project.xml ├── operand.hpp ├── operator_proxy.hpp ├── operators.hpp └── polyop.hpp /.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/.dep.inc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/README.md -------------------------------------------------------------------------------- /functors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/functors.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/main.cpp -------------------------------------------------------------------------------- /nbproject/Makefile-Debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/nbproject/Makefile-Debug.mk -------------------------------------------------------------------------------- /nbproject/Makefile-Release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/nbproject/Makefile-Release.mk -------------------------------------------------------------------------------- /nbproject/Makefile-impl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/nbproject/Makefile-impl.mk -------------------------------------------------------------------------------- /nbproject/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/nbproject/Makefile-variables.mk -------------------------------------------------------------------------------- /nbproject/Package-Debug.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/nbproject/Package-Debug.bash -------------------------------------------------------------------------------- /nbproject/Package-Release.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/nbproject/Package-Release.bash -------------------------------------------------------------------------------- /nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/nbproject/configurations.xml -------------------------------------------------------------------------------- /nbproject/private/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/nbproject/private/Makefile-variables.mk -------------------------------------------------------------------------------- /nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /nbproject/private/launcher.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/nbproject/private/launcher.properties -------------------------------------------------------------------------------- /nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/nbproject/private/private.xml -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /operand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/operand.hpp -------------------------------------------------------------------------------- /operator_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/operator_proxy.hpp -------------------------------------------------------------------------------- /operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/operators.hpp -------------------------------------------------------------------------------- /polyop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu343726/Polyop/HEAD/polyop.hpp --------------------------------------------------------------------------------