mattrussmill / qcvTouchUp

Simple image viewer and editor for photographs - OpenCV and Qt Widgets application
GNU General Public License v3.0
5 stars 1 forks source link

Class Definitions in Headers #21

Closed mattrussmill closed 6 years ago

mattrussmill commented 6 years ago

Change "include" statements in header files to class declarations and have the "include" statements in the body files to improve compile time.

See: https://stackoverflow.com/questions/2297567/where-should-include-be-put-in-c

mattrussmill commented 6 years ago

Forward declarations for classes used and include directives removed from header files where allowable by the compiler.