Add include guards

This commit is contained in:
Ignacio R. Morelle 2015-09-01 16:35:59 -03:00
parent 6c333d8278
commit b68686eb45

View file

@ -11,7 +11,10 @@
See the COPYING file for more details.
*/
#pragma once
#ifndef QUIT_CONFIRMATION_HPP_INCLUDED
#define QUIT_CONFIRMATION_HPP_INCLUDED
class CVideo;
#include <cassert>
@ -30,3 +33,5 @@ private:
static int count_;
static bool open_;
};
#endif