Add include guards
This commit is contained in:
parent
6c333d8278
commit
b68686eb45
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue