diff --git a/exercises/practice/raindrops/raindrops.h b/exercises/practice/raindrops/raindrops.h index 09004f68..7e4cfc05 100644 --- a/exercises/practice/raindrops/raindrops.h +++ b/exercises/practice/raindrops/raindrops.h @@ -1,7 +1,13 @@ -#pragma once +#ifndef RAINDROPS_H +#define RAINDROPS_H + +#include namespace raindrops { -// TODO: add your solution here + // Declaration of the convert function + std::string convert(int number); } // namespace raindrops + +#endif // RAINDROPS_H