blob: 025dfc0fbed39b451d15def7bd286476f2b4bec4 [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