builder.h

来自「LINUX 下, 以 QT/KDE 写的档案管理员」· C头文件 代码 · 共 38 行

H
38
字号
//Author:    Max Howell <max.howell@methylblue.com>, (C) 2003-4//Copyright: See COPYING file that comes with this distribution#ifndef BUILDER_H#define BUILDER_H#include "radialMap.h"   //Segment, defines#include "fileTree.h"template <class T> class Chain;namespace RadialMap{    class Map;    //temporary class that builds the Map signature    class Builder    {    public:        Builder( Map*, const Directory* const, bool fast=false );    private:        void findVisibleDepth( const Directory* const dir, const uint=0 );        void setLimits( const uint& );        bool build( const Directory* const, const uint=0, uint=0, const uint=5760 );        Map             *m_map;        const Directory* const m_root;        const FileSize   m_minSize;        uint            *m_depth;        Chain<Segment>  *m_signature;        FileSize        *m_limits;    };}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?