summaryrefslogtreecommitdiff
path: root/src/repoList.cpp
blob: 0ee92c50f4320e139e8c65648caaaea2f5fb1762 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <Ice/ObjectAdapter.h>
#include "repoList.h"
#include "repo.h"

GitFS::RepoList::RepoList(const Ice::PropertiesPtr &)
{

}

NetFS::VolumePrxPtr 
GitFS::RepoList::connect(const ::std::string, const ::std::string,
		const ::Ice::Current & ice)
{
	return Ice::uncheckedCast<NetFS::VolumePrx>(ice.adapter->addWithUUID(std::make_shared<Repo>()));
}