blob: e903dbff53c49a9a466c8f3b41b9eb35d120de89 [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.
#ifndef CRYPTOHOME_MOUNT_FACTORY_H_
#define CRYPTOHOME_MOUNT_FACTORY_H_
#include <string>
#include <vector>
namespace cryptohome {
class Mount;
// Provide a means for mocks to be injected anywhere that new Mount objects
// are created.
class MountFactory {
public:
MountFactory();
virtual ~MountFactory();
virtual Mount* New();
};
} // namespace cryptohome
#endif // CRYPTOHOME_MOUNT_FACTORY_H_