mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 16:31:11 +02:00
use var passed by reference
This commit is contained in:
@@ -91,10 +91,10 @@ class CConfigFile
|
||||
// vectors
|
||||
//
|
||||
std::vector <std::string> getStringVector(const std::string & key);
|
||||
void setStringVector(const std::string & key, const std::vector<std::string> vec);
|
||||
void setStringVector(const std::string & key, const std::vector<std::string> &vec);
|
||||
|
||||
std::vector <int32_t> getInt32Vector(const std::string & key);
|
||||
void setInt32Vector(const std::string & key, const std::vector<int32_t> vec);
|
||||
void setInt32Vector(const std::string & key, const std::vector<int32_t> &vec);
|
||||
|
||||
//
|
||||
// flags
|
||||
|
Reference in New Issue
Block a user