Formatting
This commit is contained in:
@@ -13,9 +13,6 @@ namespace device {
|
|||||||
class Device
|
class Device
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
std::string deviceIdentifier;
|
|
||||||
std::vector<std::shared_ptr<DeviceAttachmentSpec>> deviceAttachmentSpecs;
|
|
||||||
|
|
||||||
Device(const std::string& identifier) : deviceIdentifier(identifier) {}
|
Device(const std::string& identifier) : deviceIdentifier(identifier) {}
|
||||||
|
|
||||||
std::string stringify() const
|
std::string stringify() const
|
||||||
@@ -28,6 +25,10 @@ public:
|
|||||||
}
|
}
|
||||||
return os.str();
|
return os.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public:
|
||||||
|
std::string deviceIdentifier;
|
||||||
|
std::vector<std::shared_ptr<DeviceAttachmentSpec>> deviceAttachmentSpecs;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace device
|
} // namespace device
|
||||||
|
|||||||
@@ -7,9 +7,9 @@
|
|||||||
#include <opts.h>
|
#include <opts.h>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <functional>
|
||||||
#include <user/deviceAttachmentSpec.h>
|
#include <user/deviceAttachmentSpec.h>
|
||||||
#include <deviceManager/device.h>
|
#include <deviceManager/device.h>
|
||||||
#include <functional>
|
|
||||||
|
|
||||||
namespace smo {
|
namespace smo {
|
||||||
namespace device {
|
namespace device {
|
||||||
|
|||||||
Reference in New Issue
Block a user