mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-05-24 05:25:45 +08:00
Delete nasal_hash.h
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user