You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
644 B
32 lines
644 B
//
|
|
// Created by zhaohe on 19-5-21.
|
|
//
|
|
|
|
#pragma once
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <list>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <set>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <thread>
|
|
#include <vector>
|
|
// #include <zwtimecpp/core/base/interlog/simple_logger.hpp>
|
|
// #include "zwtimecpp/core/base/object.hpp"
|
|
|
|
namespace iflytop {
|
|
namespace core {
|
|
using namespace std;
|
|
|
|
class zexception : public std::exception {
|
|
public:
|
|
string m_description;
|
|
string m_what;
|
|
zexception(string description);
|
|
virtual ~zexception();
|
|
const char *what() const _GLIBCXX_USE_NOEXCEPT;
|
|
};
|
|
} // namespace core
|
|
} // namespace iflytop
|