This commit is contained in:
Camille Chauvet 2023-08-07 19:06:32 +02:00
parent 13f208d577
commit 18a2008a96
5 changed files with 5 additions and 9 deletions

View File

@ -1,3 +1,5 @@
#pragma once
class Fixed
{
private:

BIN
ex01/ex01 Executable file

Binary file not shown.

View File

@ -1,7 +1,6 @@
#ifndef FIXED_H
# define FIXED_H
#pragma once
# include <ostream>
#include <ostream>
class Fixed
{
@ -25,5 +24,3 @@ class Fixed
};
std::ostream& operator << (std::ostream &out, const Fixed& fixed);
#endif

BIN
ex02/ex02

Binary file not shown.

View File

@ -1,5 +1,4 @@
#ifndef FIXED_H
# define FIXED_H
#pragma once
# include <ostream>
@ -47,5 +46,3 @@ class Fixed
};
std::ostream& operator << (std::ostream &out, const Fixed& fixed);
#endif