Changeset - 84fd03411b62
[Not reviewed]
default
0 3 0
Hasan Yavuz Ă–ZDERYA - 10 years ago 2015-08-13 02:26:00
hy@ozderya.net
added misssing guard defines to header files
3 files changed with 15 insertions and 0 deletions:
0 comments (0 inline, 0 general)
plot.h
Show inline comments
 
@@ -17,6 +17,9 @@
 
  along with serialplot.  If not, see <http://www.gnu.org/licenses/>.
 
*/
 

	
 
#ifndef PLOT_H
 
#define PLOT_H
 

	
 
#include <qwt_plot.h>
 
#include <qwt_plot_grid.h>
 
#include "zoomer.h"
 
@@ -46,3 +49,5 @@ public slots:
 
private slots:
 
    void unzoomed();
 
};
 

	
 
#endif // PLOT_H
utils.h
Show inline comments
 
@@ -17,6 +17,9 @@
 
  along with serialplot.  If not, see <http://www.gnu.org/licenses/>.
 
*/
 

	
 
#ifndef UTILS_H
 
#define UTILS_H
 

	
 
// credits: peppe@stackoverflow [http://stackoverflow.com/a/16795664/432492]
 
template<typename... Args> struct SELECT {
 
    template<typename C, typename R>
 
@@ -24,3 +27,5 @@ template<typename... Args> struct SELECT
 
        return pmf;
 
    }
 
};
 

	
 
#endif // UTILS_H
version.h.in
Show inline comments
 
@@ -17,8 +17,13 @@
 
  along with serialplot.  If not, see <http://www.gnu.org/licenses/>.
 
*/
 

	
 
#ifndef VERSION_H
 
#define VERSION_H
 

	
 
#define MAJOR_VERSION    @MAJOR_VERSION@
 
#define MINOR_VERSION    @MINOR_VERSION@
 
#define PATCH_VERSION    @PATCH_VERSION@
 
#define VERSION_STRING   "@VERSION_STRING@"
 
#define VERSION_REVISION "@VERSION_REVISION@"
 

	
 
#endif // VERSION_H
0 comments (0 inline, 0 general)