sapling/eden/fs/prjfs/Dispatcher.cpp
Xavier Deguillard 4c2019197a prjfs: add TARGETS file
Summary:
This enables autodeps, and brings us one step closer to building EdenFS with
Buck on Windows.

Reviewed By: fanzeyi

Differential Revision: D23857794

fbshipit-source-id: c8587a6f7b9e4d9575a62f592c1d0737dff2a8f0
2020-09-23 09:43:35 -07:00

23 lines
450 B
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#ifdef _WIN32
#include "eden/fs/prjfs/Dispatcher.h"
namespace facebook::eden {
Dispatcher::~Dispatcher() {}
Dispatcher::Dispatcher(EdenStats* stats) : stats_(stats) {}
EdenStats* Dispatcher::getStats() const {
return stats_;
}
} // namespace facebook::eden
#endif