Zebra Bioptic Color Camera SDK For Linux  1.0.0-17
All Classes Functions Variables Enumerations Enumerator
assets.h
1 /*
2  * ©2019 Zebra Technologies Corp. and/or its affiliates.
3  */
4 #ifndef ASSETS_H_
5 #define ASSETS_H_
6 
7 #include <string>
8 
9 namespace zebra {
10 namespace camera_sdk {
14 class Assets
15 {
16 
17 private:
21  std::string serial_number_;
25  std::string model_;
26 
27 public:
31  Assets(std::string serial, std::string model): serial_number_(serial), model_(model)
32  {
33  }
37  const std::string GetSerial()
38  {
39  return serial_number_;
40  }
44  const std::string GetModel()
45  {
46  return model_;
47  }
48 };
49 
50 } /* namespace camera_sdk */
51 } /* namespace zebra */
52 
53 #endif /* ASSETS_H_ */
zebra::camera_sdk::Assets::GetModel
const std::string GetModel()
Definition: assets.h:44
zebra::camera_sdk::Assets::Assets
Assets(std::string serial, std::string model)
Definition: assets.h:31
zebra::camera_sdk::Assets::GetSerial
const std::string GetSerial()
Definition: assets.h:37