Files
salmanoff/smocore/include/deviceManager/device.h
T

37 lines
815 B
C++
Raw Normal View History

2025-08-29 17:42:13 -04:00
#ifndef DEVICE_H
#define DEVICE_H
#include <string>
#include <vector>
#include <memory>
#include <sstream>
#include <user/deviceAttachmentSpec.h>
namespace smo {
namespace device {
class Device
{
public:
std::string deviceIdentifier;
std::vector<std::shared_ptr<DeviceAttachmentSpec>> deviceAttachmentSpecs;
Device(const std::string& identifier) : deviceIdentifier(identifier) {}
std::string stringify() const
{
std::ostringstream os;
os << "Device Identifier: " << deviceIdentifier
<< ", Attachment Specs: " << deviceAttachmentSpecs.size() << std::endl;
for (const auto& spec : deviceAttachmentSpecs) {
os << " " << spec->stringify();
}
return os.str();
}
};
} // namespace device
} // namespace smo
#endif // DEVICE_H