Entry 3290

pygments test

   

Submitted by marek on March 9, 2010 at 9:27 a.m.
Language: C++. Code size: 812 bytes.

/* CLASS DECLARATION **********************************************************/
/**
This class provides the specific file handling for the snoop2 files before ...
*
@author: ib-krajewski.de
*
@pattern
*******************************************************************************/
class SnoopFileConverter
{
public:
    SnoopFileConverter(void);
    ~SnoopFileConverter(void);

    void convert(const std::string& inputFile, const std::string& targetDir, 
                 std::string& outFilePath);

    void capfileTrace(bool state) { m_capfileTrace = state; }

private:
    bool parseSnoopFile(std::istream& capFile, std::ostream& dmtFile, int& serviceType, 
                        int& dataType);
    //.....

private:
    /** debugging mode flags */
    bool m_capfileTrace;
};

This snippet took 0.01 seconds to highlight.

Back to the Entry List or Home.

Delete this entry (admin only).