13
0

Add missing header include guards in canvas library

This commit is contained in:
Tim Mayberry 2015-12-08 08:05:24 +10:00
parent 937a175898
commit d4a64299c5
3 changed files with 15 additions and 1 deletions

View File

@ -17,6 +17,9 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __CANVAS_FLAG_H__
#define __CANVAS_FLAG_H__
#include <pangomm/fontdescription.h>
#include "canvas/visibility.h"
@ -54,3 +57,5 @@ private:
};
}
#endif // __CANVAS_FLAG_H__

View File

@ -17,6 +17,9 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __CANVAS_UTILS_H__
#define __CANVAS_UTILS_H__
#include <cairomm/context.h>
#include "canvas/visibility.h"
@ -33,3 +36,4 @@ namespace ArdourCanvas {
Distance LIBCANVAS_API distance_to_segment_squared (Duple const & p, Duple const & p1, Duple const & p2, double& t, Duple& at);
}
#endif // __CANVAS_UTILS_H__

View File

@ -18,6 +18,9 @@
*/
#ifndef __CANVAS_WAVE_VIEW_H__
#define __CANVAS_WAVE_VIEW_H__
#include <boost/shared_ptr.hpp>
#include <boost/shared_array.hpp>
#include <boost/scoped_array.hpp>
@ -408,4 +411,6 @@ public:
static DrawingRequestQueue request_queue;
};
}
} // namespace ArdourCanvas
#endif // __CANVAS_WAVE_VIEW_H__