Menu

[r11]: / branches / dasho / DOM / interface / NamedNodeMap.h  Maximize  Restore  History

Download this file

21 lines (14 with data), 478 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#ifndef _NamedNodeMap_H_
#define _NamedNodeMap_H_
#include "DOM.h"
class NamedNodeMap {
public:
Node* getNamedItem(String name);
Node* setNamedItem(Node* arg)
throw (DOMException&);
Node* removeNamedItem(String name)
throw (DOMException&);
Node* item(int index);
int getLength();
};
#endif // _NamedNodeMap_H_
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.