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