Show IMAPParserFactory.h syntax highlighted
#ifndef IMAPPARSERFACTORY
#define IMAPPARSERFACTORY
#ifdef CWDEBUG
#include "sys.h"
#include "debug.h"
#endif
#include <IMAPParser.h>
/**
* This was added in order to isolate the code from the actual parser
* implementation. It may be removed in future versions.
*/
namespace IMAP
{
class IMAPParserFactory
{
public:
static IMAPParser *makeParser();
private:
IMAPParserFactory() {} // Singleton
};
};
#endif
See more files for this project here