Webserv
Loading...
Searching...
No Matches
IndentManager.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <iostream>
4
5std::ostream &printIndent(std::ostream &os);
6
9};
10
11std::ostream &operator<<(std::ostream &os, const IndentManager &mod);
12
13const IndentManager indent = {1}; // Used as 'os << indent;'
14const IndentManager unindent = {-1}; // Used as 'os << unindent;'
const IndentManager indent
Definition IndentManager.hpp:13
const IndentManager unindent
Definition IndentManager.hpp:14
std::ostream & printIndent(std::ostream &os)
Definition IndentManager.cpp:8
std::ostream & operator<<(std::ostream &os, const IndentManager &mod)
Definition IndentManager.cpp:16
Definition IndentManager.hpp:7
int modification
Definition IndentManager.hpp:8