Sindbad~EG File Manager

Current Path : /usr/local/include/srchilite/
Upload File :
Current File : //usr/local/include/srchilite/srcuntabifier.h

//
// Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2004-2008
//
// Copyright: See COPYING file that comes with this distribution
//

#ifndef	SRCUNTABIFIER_H
#define	SRCUNTABIFIER_H

#include "preformatter.h"

namespace srchilite {

using std::string;

/**
 * PerFormratter to convert tabs to spaces before generation
 */
class Untabifier : public PreFormatter {
public:

    Untabifier(unsigned int nSpacesPerTab, PreFormatterPtr f = PreFormatterPtr()) :
        PreFormatter(f), nSpacesPerTab_(nSpacesPerTab), n_(0) {
    }

    virtual const string doPreformat(const std::string &text);

private:

    /// the number of spaces corresponding to a tab char
    const int nSpacesPerTab_;

    /// the counter of characters
    unsigned int n_;
};

}

#endif // SRCUNTABIFIER_H

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists