21 lines
283 B
C++
21 lines
283 B
C++
#ifndef __mysql_h__
|
|
#define __mysql_h__
|
|
|
|
#include "Tag.h"
|
|
#include "ZString.h"
|
|
#include "MString.h"
|
|
#include <sstream>
|
|
|
|
namespace jet {
|
|
|
|
class __mysql : public Tag {
|
|
|
|
public:
|
|
__mysql(coreutils::ZString &in, coreutils::MString &parent, Global &global);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|