dbms: style [#METR-2944].

This commit is contained in:
Alexey Milovidov 2014-11-30 10:01:00 +03:00
parent 5fae38cb97
commit c013925329
3 changed files with 6 additions and 6 deletions

View File

@ -10,7 +10,7 @@
namespace zkutil
{
typedef const ACL_vector * AclPtr;
typedef const ACL_vector * ACLPtr;
typedef Stat Stat;
struct Op
@ -41,7 +41,7 @@ private:
struct Op::Create : public Op
{
Create(const std::string & path_, const std::string & value_, AclPtr acl, int32_t flags);
Create(const std::string & path_, const std::string & value_, ACLPtr acl, int32_t flags);
std::string getPathCreated()
{

View File

@ -64,9 +64,9 @@ public:
*/
bool expired();
AclPtr getDefaultACL();
ACLPtr getDefaultACL();
void setDefaultACL(AclPtr new_acl);
void setDefaultACL(ACLPtr new_acl);
/** Создать znode. Используется ACL, выставленный вызовом setDefaultACL (по умолчанию, всем полный доступ).
* Если что-то пошло не так, бросить исключение.

View File

@ -575,13 +575,13 @@ Op::Create::Create(const std::string & path_, const std::string & value_, AclPtr
zoo_create_op_init(data.get(), path.c_str(), value.c_str(), value.size(), acl, flags, created_path.data(), created_path.size());
}
AclPtr ZooKeeper::getDefaultACL()
ACLPtr ZooKeeper::getDefaultACL()
{
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
return default_acl;
}
void ZooKeeper::setDefaultACL(AclPtr new_acl)
void ZooKeeper::setDefaultACL(ACLPtr new_acl)
{
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
default_acl = new_acl;