Pothos  0.1.1
The Pothos dataflow programming software suite
 All Classes Namespaces Files Functions Variables Typedefs Friends Macros
UID.hpp
Go to the documentation of this file.
1 
11 #pragma once
12 #include <Pothos/Config.hpp>
13 #include <string>
14 
15 namespace Pothos {
16 namespace Util {
17 
22 {
23 public:
24 
26  UID(void);
27 
29  const std::string &uid(void) const;
30 
31 private:
32  std::string _uid;
33 };
34 
35 } //namespace Util
36 } //namespace Pothos
37 
38 inline const std::string &Pothos::Util::UID::uid(void) const
39 {
40  return _uid;
41 }
#define POTHOS_API
Definition: Config.hpp:41
Definition: UID.hpp:21
const std::string & uid(void) const
Get the UID as a string.
Definition: UID.hpp:38