📄 dir.h
字号:
//=======================================================================// Dir.h//-----------------------------------------------------------------------// This file is part of the package paco// Copyright (C) 2004-2007 David Rosal <david.3r@gmail.com>// For more information visit http://paco.sourceforge.net//=======================================================================#ifndef PACO_DIR_H#define PACO_DIR_H#include <dirent.h>#include <iosfwd>namespace Paco {class Dir{ public: Dir(std::string const&); ~Dir(); bool read(std::string&); void rewind(); private: DIR* mDir; struct dirent* mDirent; Dir(Dir const&); Dir& operator=(Dir const&); }; // class Dir} // namespace Paco#endif // PACO_DIR_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -