mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
* replaced std::vector with std::deque.
This commit is contained in:
parent
26aa28acb3
commit
198b87fa3e
32 changed files with 96 additions and 84 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue