AuboStudio SDK  0.6.3
folder_node.h
浏览该文件的文档.
1#ifndef AUBO_SCOPE_FOLDER_NODE_H
2#define AUBO_SCOPE_FOLDER_NODE_H
3
5
6namespace arcs {
7namespace aubo_scope {
9
11{
12public:
15 virtual ~FolderNode();
16
17 /**
18 * * Set the name for the Folder node.
19 * @param set The name for the node.
20 * @return This node.
21 */
22 void setFolderName(const std::string &folder_name);
23
24private:
25 friend class DataSwitch;
27 void *d_{ nullptr };
28};
29
30} // namespace aubo_scope
31} // namespace arcs
32#endif // AUBO_SCOPE_FOLDER_NODE_H
#define ARCS_ABI_EXPORT
#define ARCS_CLASS_FORWARD(C)
Macro that forward declares a class and defines the respective smartpointers through ARCS_DECLARE_PTR...
void setFolderName(const std::string &folder_name)