Formatting

This commit is contained in:
2025-09-20 18:23:03 -04:00
parent 32179eee5e
commit 329d57a16d
2 changed files with 5 additions and 4 deletions
+4 -3
View File
@@ -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 {