GetAttributes.h

См. документацию.
00001 /*
00002  * GetAttributes.h
00003  *
00004  *  Created on: 22.05.2011
00005  *      Author: nick
00006  */
00007 
00008 #ifndef GETATTRIBUTES_H_
00009 #define GETATTRIBUTES_H_
00010 
00011 #include "../XML_TagTypes/GetAttr.h"
00012 //==
00013 #include "../XML/TagHandler.h"
00014 #include "../XML/Protocol.h"
00015 #include "../XML/TagIQ.h"
00016 #include <sys/types.h>
00017 //#include <dirent.h>
00018 #include <sys/stat.h>
00019 #include <unistd.h>
00020 #include "../ServerConfig.h"
00021 
00022 class GetAttributes:public TagHandler<TagIQ> {
00023 protected:
00024         Protocol* protocol;
00025         ServerConfig* sc;
00026 public:
00027         void handleTag(TagIQ &tag);
00028         GetAttributes(Protocol &protocol,ServerConfig* sc);
00029         virtual ~GetAttributes();
00030 };
00031 
00032 #endif /* GETATTRIBUTES_H_ */