2019-07-27 22:44:32 +08:00
|
|
|
|
// stdafx.h : 标准系统包含文件的包含文件,
|
|
|
|
|
// 或是常用但不常更改的项目特定的包含文件
|
2016-10-07 19:11:41 +08:00
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#include <iostream>
|
|
|
|
|
//#include <tchar.h>
|
|
|
|
|
|
2019-07-27 22:44:32 +08:00
|
|
|
|
// TODO: 在此处引用程序要求的附加头文件
|
2016-10-07 23:07:33 +08:00
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
#include <fstream>
|
|
|
|
|
#include <string>
|
2016-10-07 19:11:41 +08:00
|
|
|
|
#include "acl_cpp/lib_acl.hpp"
|
2016-10-07 23:07:33 +08:00
|
|
|
|
#include "lib_acl.h"
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
#include <direct.h>
|
|
|
|
|
#define getcwd _getcwd
|
|
|
|
|
#define chdir _chdir
|
|
|
|
|
#endif
|