blob: bd69d335682fb5aa61282035767d6b7151a224a9 [file] [log] [blame]
// Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cryptohome/mount_factory.h"
#include "cryptohome/mount.h"
namespace cryptohome {
MountFactory::MountFactory() { }
MountFactory::~MountFactory() { }
Mount* MountFactory::New() {
return new Mount();
}
} // namespace cryptohome