* replaced std::vector with std::deque.

This commit is contained in:
Tatsuhiro Tsujikawa 2006-03-22 16:21:11 +00:00
parent 26aa28acb3
commit 198b87fa3e
32 changed files with 96 additions and 84 deletions

View file

@ -24,7 +24,7 @@
#include "common.h"
#include <map>
#include <vector>
#include <deque>
#include <string>
using namespace std;
@ -39,7 +39,7 @@ public:
void put(const string& name, const string& value);
bool defined(const string& name) const;
string getFirst(const string& name) const;
vector<string> get(const string& name) const;
Strings get(const string& name) const;
int getFirstAsInt(const string& name) const;
long long int getFirstAsLLInt(const string& name) const;
};