Delete nasal_hash.h
This commit is contained in:
parent
d6936db5f3
commit
beea499ed1
|
@ -1,27 +0,0 @@
|
||||||
#ifndef __NASAL_HASH_H__
|
|
||||||
#define __NASAL_HASH_H__
|
|
||||||
|
|
||||||
#include "nasal_var.h"
|
|
||||||
|
|
||||||
struct nasal_hash_unit
|
|
||||||
{
|
|
||||||
std::string name;
|
|
||||||
var hash_var;
|
|
||||||
nasal_hash_unit *next;
|
|
||||||
};
|
|
||||||
|
|
||||||
class nasal_hash
|
|
||||||
{
|
|
||||||
private:
|
|
||||||
nasal_hash_unit *head;
|
|
||||||
public:
|
|
||||||
nasal_hash();
|
|
||||||
~nasal_hash();
|
|
||||||
nasal_hash& operator=(const nasal_hash&);
|
|
||||||
void append(std::string&,var&);
|
|
||||||
int contains(std::string&);
|
|
||||||
int delete_element(std::string&);
|
|
||||||
nasal_list keys();
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
Loading…
Reference in New Issue