📄 preprocessor.h
字号:
#ifndef PREPROCESSOR_H
#define PREPROCESSOR_H
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <cstdlib>
#include "boost/date_time/posix_time/posix_time.hpp"
#include "boost/algorithm/string.hpp"
#include "boost/lexical_cast.hpp"
#include "Record.h"
#include "AppException.h"
using namespace std;
using namespace boost::gregorian;
using namespace boost::posix_time;
using namespace boost;
class Preprocessor {
private:
vector<Record>* fatalList;
vector<Record>* nonFatalList;
void initializeRecordList(const char* fileName) throw(AppException);
void init();
public:
Preprocessor();
~Preprocessor();
vector<Record>* getFatalList() const;
vector<Record>* getNonFatalList() const;
};
#endif /* PREPROCESSOR_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -