use pragma once
This commit is contained in:
parent
127609f392
commit
ba64f4e541
11 changed files with 11 additions and 44 deletions
|
@ -1,5 +1,4 @@
|
||||||
#ifndef _MSTCH_H_
|
#pragma once
|
||||||
#define _MSTCH_H_
|
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
@ -37,5 +36,3 @@ namespace mstch {
|
||||||
const std::map<std::string,std::string>& partials =
|
const std::map<std::string,std::string>& partials =
|
||||||
std::map<std::string,std::string>());
|
std::map<std::string,std::string>());
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // _MSTCH_H_
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef _MSTCH_RENDER_CONTEXT_H_
|
#pragma once
|
||||||
#define _MSTCH_RENDER_CONTEXT_H_
|
|
||||||
|
|
||||||
#include <deque>
|
#include <deque>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
@ -49,5 +48,3 @@ namespace mstch {
|
||||||
std::string delim_end;
|
std::string delim_end;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif //_MSTCH_RENDER_CONTEXT_H_
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef _MSTCH_IN_INVERTED_SECTION_H_
|
#pragma once
|
||||||
#define _MSTCH_IN_INVERTED_SECTION_H_
|
|
||||||
|
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include "render_state.hpp"
|
#include "render_state.hpp"
|
||||||
|
@ -19,5 +18,3 @@ namespace mstch {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif //_MSTCH_IN_INVERTED_SECTION_H_
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef _MSTCH_IN_SECTION_H_
|
#pragma once
|
||||||
#define _MSTCH_IN_SECTION_H_
|
|
||||||
|
|
||||||
#include "render_state.hpp"
|
#include "render_state.hpp"
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
@ -19,5 +18,3 @@ namespace mstch {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif //_MSTCH_IN_SECTION_H_
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef _MSTCH_OUTSIDE_SECTION_H_
|
#pragma once
|
||||||
#define _MSTCH_OUTSIDE_SECTION_H_
|
|
||||||
|
|
||||||
#include "render_state.hpp"
|
#include "render_state.hpp"
|
||||||
|
|
||||||
|
@ -12,5 +11,3 @@ namespace mstch {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif //_MSTCH_OUTSIDE_SECTION_H_
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef _MSTCH_RENDER_STATE_H_
|
#pragma once
|
||||||
#define _MSTCH_RENDER_STATE_H_
|
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include "token.hpp"
|
#include "token.hpp"
|
||||||
|
@ -15,5 +14,3 @@ namespace mstch {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif //_MSTCH_RENDER_STATE_H_
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef _MSTCH_TOKEN_H_
|
#pragma once
|
||||||
#define _MSTCH_TOKEN_H_
|
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
@ -26,5 +25,3 @@ namespace mstch {
|
||||||
type token_info(char c);
|
type token_info(char c);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif //_MSTCH_TOKEN_H_
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef _MSTCH_UTILS_H_
|
#pragma once
|
||||||
#define _MSTCH_UTILS_H_
|
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
@ -10,5 +9,3 @@ namespace mstch {
|
||||||
citer first_not_ws(criter begin, criter end);
|
citer first_not_ws(criter begin, criter end);
|
||||||
std::string html_escape(std::string str);
|
std::string html_escape(std::string str);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif //_MSTCH_UTILS_H_
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef _MSTCH_IS_NODE_EMPTY_H_
|
#pragma once
|
||||||
#define _MSTCH_IS_NODE_EMPTY_H_
|
|
||||||
|
|
||||||
#include <boost/variant/static_visitor.hpp>
|
#include <boost/variant/static_visitor.hpp>
|
||||||
#include <boost/blank.hpp>
|
#include <boost/blank.hpp>
|
||||||
|
@ -21,5 +20,3 @@ namespace mstch {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif //_MSTCH_IS_NODE_EMPTY_H_
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef _MSTCH_RENDER_NODE_H_
|
#pragma once
|
||||||
#define _MSTCH_RENDER_NODE_H_
|
|
||||||
|
|
||||||
#include <boost/variant/static_visitor.hpp>
|
#include <boost/variant/static_visitor.hpp>
|
||||||
#include <boost/blank.hpp>
|
#include <boost/blank.hpp>
|
||||||
|
@ -26,5 +25,3 @@ namespace mstch {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif //_MSTCH_RENDER_NODE_H_
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef _MSTCH_RENDER_SECTION_H_
|
#pragma once
|
||||||
#define _MSTCH_RENDER_SECTION_H_
|
|
||||||
|
|
||||||
#include <boost/variant/static_visitor.hpp>
|
#include <boost/variant/static_visitor.hpp>
|
||||||
#include <boost/blank.hpp>
|
#include <boost/blank.hpp>
|
||||||
|
@ -32,5 +31,3 @@ namespace mstch {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif //_MSTCH_RENDER_SECTION_H_
|
|
||||||
|
|
Loading…
Reference in a new issue