Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CyanLight
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fxk8y
CyanLight
Commits
68f6be1f
Commit
68f6be1f
authored
2 years ago
by
fxk8y
Browse files
Options
Downloads
Patches
Plain Diff
ST: Choose a better name before roll-out
parent
1d09e964
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CLC-qthing/SiliconTorch/SiliconTorch.cpp
+3
-3
3 additions, 3 deletions
CLC-qthing/SiliconTorch/SiliconTorch.cpp
CLC-qthing/SpiderLib/HasMQTT.cpp
+42
-42
42 additions, 42 deletions
CLC-qthing/SpiderLib/HasMQTT.cpp
CLC-qthing/SpiderLib/HasMQTT.hpp
+23
-23
23 additions, 23 deletions
CLC-qthing/SpiderLib/HasMQTT.hpp
with
68 additions
and
68 deletions
CLC-qthing/SiliconTorch/SiliconTorch.cpp
+
3
−
3
View file @
68f6be1f
...
...
@@ -35,9 +35,9 @@ namespace SiliconTorch {
SiliconTorch
::
SiliconTorch
()
{
ESP_LOGI
(
TAG
,
"My deviceTopic[ %s ]"
,
getD
eviceTopic
().
c_str
());
ESP_LOGI
(
TAG
,
"My deviceTopic[ %s ]"
,
getD
eviceTopic
(
"foo"
,
"bar"
,
"baz"
,
"spam"
,
"eggs"
).
c_str
());
ESP_LOGI
(
TAG
,
"My serviceTopic[ %s ]"
,
getS
erviceTopic
(
"1337"
,
"4242"
,
"foo"
,
"bar"
,
"baz"
,
"spam"
,
"eggs"
,
"4242"
,
"1337"
).
c_str
());
ESP_LOGI
(
TAG
,
"My deviceTopic[ %s ]"
,
d
eviceTopic
().
c_str
());
ESP_LOGI
(
TAG
,
"My deviceTopic[ %s ]"
,
d
eviceTopic
(
"foo"
,
"bar"
,
"baz"
,
"spam"
,
"eggs"
).
c_str
());
ESP_LOGI
(
TAG
,
"My serviceTopic[ %s ]"
,
s
erviceTopic
(
"1337"
,
"4242"
,
"foo"
,
"bar"
,
"baz"
,
"spam"
,
"eggs"
,
"4242"
,
"1337"
).
c_str
());
//serviceManager = new SiliconTorch::ServiceManager::ServiceManager();
...
...
This diff is collapsed.
Click to expand it.
CLC-qthing/SpiderLib/HasMQTT.cpp
+
42
−
42
View file @
68f6be1f
...
...
@@ -41,7 +41,7 @@ namespace SpiderLib {
str
HasMQTT
::
getD
eviceTopic
()
const
{
str
HasMQTT
::
d
eviceTopic
()
const
{
// TODO: adapt this when qthing changes from macro to real string
str
topic
=
DEVICE_NAMESPACE
;
topic
.
pop_back
();
// erase the last `/` from qthing
...
...
@@ -49,16 +49,16 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getD
eviceTopic
(
const
str
&
subt0
)
const
{
str
topic
=
getD
eviceTopic
();
str
HasMQTT
::
d
eviceTopic
(
const
str
&
subt0
)
const
{
str
topic
=
d
eviceTopic
();
topic
+=
slash
+
subt0
;
return
topic
;
}
str
HasMQTT
::
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
)
const
{
str
topic
=
getD
eviceTopic
();
str
HasMQTT
::
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
)
const
{
str
topic
=
d
eviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -66,8 +66,8 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
)
const
{
str
topic
=
getD
eviceTopic
();
str
HasMQTT
::
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
)
const
{
str
topic
=
d
eviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -76,8 +76,8 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
)
const
{
str
topic
=
getD
eviceTopic
();
str
HasMQTT
::
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
)
const
{
str
topic
=
d
eviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -87,8 +87,8 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
)
const
{
str
topic
=
getD
eviceTopic
();
str
HasMQTT
::
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
)
const
{
str
topic
=
d
eviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -99,8 +99,8 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
)
const
{
str
topic
=
getD
eviceTopic
();
str
HasMQTT
::
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
)
const
{
str
topic
=
d
eviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -112,8 +112,8 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
)
const
{
str
topic
=
getD
eviceTopic
();
str
HasMQTT
::
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
)
const
{
str
topic
=
d
eviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -126,8 +126,8 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
)
const
{
str
topic
=
getD
eviceTopic
();
str
HasMQTT
::
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
)
const
{
str
topic
=
d
eviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -141,8 +141,8 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
,
const
str
&
subt8
)
const
{
str
topic
=
getD
eviceTopic
();
str
HasMQTT
::
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
,
const
str
&
subt8
)
const
{
str
topic
=
d
eviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -157,8 +157,8 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
,
const
str
&
subt8
,
const
str
&
subt9
)
const
{
str
topic
=
getD
eviceTopic
();
str
HasMQTT
::
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
,
const
str
&
subt8
,
const
str
&
subt9
)
const
{
str
topic
=
d
eviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -176,21 +176,21 @@ namespace SpiderLib {
str
HasMQTT
::
getS
erviceTopic
()
const
{
str
HasMQTT
::
s
erviceTopic
()
const
{
str
topic
=
"service"
;
return
topic
;
}
str
HasMQTT
::
getS
erviceTopic
(
const
str
&
subt0
)
const
{
str
topic
=
getS
erviceTopic
();
str
HasMQTT
::
s
erviceTopic
(
const
str
&
subt0
)
const
{
str
topic
=
s
erviceTopic
();
topic
+=
slash
+
subt0
;
return
topic
;
}
str
HasMQTT
::
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
)
const
{
str
topic
=
getS
erviceTopic
();
str
HasMQTT
::
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
)
const
{
str
topic
=
s
erviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -198,8 +198,8 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
)
const
{
str
topic
=
getS
erviceTopic
();
str
HasMQTT
::
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
)
const
{
str
topic
=
s
erviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -208,8 +208,8 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
)
const
{
str
topic
=
getS
erviceTopic
();
str
HasMQTT
::
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
)
const
{
str
topic
=
s
erviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -219,8 +219,8 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
)
const
{
str
topic
=
getS
erviceTopic
();
str
HasMQTT
::
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
)
const
{
str
topic
=
s
erviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -231,8 +231,8 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
)
const
{
str
topic
=
getS
erviceTopic
();
str
HasMQTT
::
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
)
const
{
str
topic
=
s
erviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -244,8 +244,8 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
)
const
{
str
topic
=
getS
erviceTopic
();
str
HasMQTT
::
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
)
const
{
str
topic
=
s
erviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -258,8 +258,8 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
)
const
{
str
topic
=
getS
erviceTopic
();
str
HasMQTT
::
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
)
const
{
str
topic
=
s
erviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -273,8 +273,8 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
,
const
str
&
subt8
)
const
{
str
topic
=
getS
erviceTopic
();
str
HasMQTT
::
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
,
const
str
&
subt8
)
const
{
str
topic
=
s
erviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
@@ -289,8 +289,8 @@ namespace SpiderLib {
return
topic
;
}
str
HasMQTT
::
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
,
const
str
&
subt8
,
const
str
&
subt9
)
const
{
str
topic
=
getS
erviceTopic
();
str
HasMQTT
::
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
,
const
str
&
subt8
,
const
str
&
subt9
)
const
{
str
topic
=
s
erviceTopic
();
topic
+=
slash
+
subt0
;
topic
+=
slash
+
subt1
;
...
...
This diff is collapsed.
Click to expand it.
CLC-qthing/SpiderLib/HasMQTT.hpp
+
23
−
23
View file @
68f6be1f
...
...
@@ -39,29 +39,29 @@ namespace SpiderLib {
// specializing on args count manually to avoid badly-designed va_args API 😞
str
getD
eviceTopic
()
const
;
str
getD
eviceTopic
(
const
str
&
subt0
)
const
;
str
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
)
const
;
str
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
)
const
;
str
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
)
const
;
str
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
)
const
;
str
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
)
const
;
str
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
)
const
;
str
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
)
const
;
str
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
,
const
str
&
subt8
)
const
;
str
getD
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
,
const
str
&
subt8
,
const
str
&
subt9
)
const
;
str
getS
erviceTopic
()
const
;
str
getS
erviceTopic
(
const
str
&
subt0
)
const
;
str
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
)
const
;
str
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
)
const
;
str
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
)
const
;
str
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
)
const
;
str
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
)
const
;
str
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
)
const
;
str
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
)
const
;
str
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
,
const
str
&
subt8
)
const
;
str
getS
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
,
const
str
&
subt8
,
const
str
&
subt9
)
const
;
str
d
eviceTopic
()
const
;
str
d
eviceTopic
(
const
str
&
subt0
)
const
;
str
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
)
const
;
str
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
)
const
;
str
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
)
const
;
str
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
)
const
;
str
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
)
const
;
str
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
)
const
;
str
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
)
const
;
str
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
,
const
str
&
subt8
)
const
;
str
d
eviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
,
const
str
&
subt8
,
const
str
&
subt9
)
const
;
str
s
erviceTopic
()
const
;
str
s
erviceTopic
(
const
str
&
subt0
)
const
;
str
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
)
const
;
str
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
)
const
;
str
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
)
const
;
str
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
)
const
;
str
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
)
const
;
str
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
)
const
;
str
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
)
const
;
str
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
,
const
str
&
subt8
)
const
;
str
s
erviceTopic
(
const
str
&
subt0
,
const
str
&
subt1
,
const
str
&
subt2
,
const
str
&
subt3
,
const
str
&
subt4
,
const
str
&
subt5
,
const
str
&
subt6
,
const
str
&
subt7
,
const
str
&
subt8
,
const
str
&
subt9
)
const
;
// specialization end
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment