Files
Work/http/PRESCAN.HPP
2024-08-07 09:16:27 -04:00

27 lines
328 B
C++

#ifndef _HTTP_PRESCAN_HPP_
#define _HTTP_PRESCAN_HPP_
#ifndef _COMMON_PUREBYTE_HPP_
#include <common/purebyte.hpp>
#endif
class String;
class PreScan
{
public:
PreScan(void);
virtual ~PreScan();
void preScan(const String &pathFileName);
private:
};
inline
PreScan::PreScan(void)
{
}
inline
PreScan::~PreScan()
{
}
#endif