23 lines
384 B
C++
23 lines
384 B
C++
#ifndef ____tag_h__
|
|
#define ____tag_h__
|
|
|
|
#include "Tag.h"
|
|
#include "ZString.h"
|
|
#include "MString.h"
|
|
#include <map>
|
|
|
|
namespace jet {
|
|
|
|
class __tag : public Tag {
|
|
|
|
public:
|
|
__tag(coreutils::ZString &in, coreutils::MString &parentOut, Global &global, Tag *parent, Tag *local);
|
|
|
|
std::map<coreutils::MString, coreutils::MString> tags;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|