view vera/src/plugins/RootDirectory.cpp @ 73:46012b0dea51

Style
author David Demelier <markand@malikania.fr>
date Fri, 19 Oct 2018 21:16:00 +0200
parents 82b832e1875d
children
line wrap: on
line source

//
// Copyright (C) 2006-2007 Maciej Sobczak
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//

#include "RootDirectory.h"


namespace // unnamed
{

Vera::Plugins::RootDirectory::DirectoryName root_;

} // unnamed namespace

namespace Vera
{
namespace Plugins
{

void RootDirectory::setRootDirectory(const DirectoryName & name)
{
    root_ = name;
}

RootDirectory::DirectoryName RootDirectory::getRootDirectory()
{
    return root_;
}

}
}