mirror of
https://github.com/lucaspalomodevelop/lpstd.git
synced 2026-03-13 07:29:38 +00:00
17 lines
315 B
C++
17 lines
315 B
C++
|
|
#ifndef __LPSTD_HPP__
|
|
#define __LPSTD_HPP__
|
|
|
|
#ifdef _WIN32
|
|
#include <cstdio>
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
#include "src/patterns/singleton.hpp"
|
|
#include "src/testing/testing.hpp"
|
|
// #include "src/faker/faker.hpp"
|
|
#include "src/exceptions/exceptions.hpp"
|
|
#include "src/classes/command.hpp"
|
|
|
|
#endif // __LPSTD_HPP__
|