File tree Expand file tree Collapse file tree 5 files changed +53
-1
lines changed Expand file tree Collapse file tree 5 files changed +53
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,14 @@ travis-osx:
14
14
definitions :
15
15
- CMAKE_INSTALL_PREFIX : $HOME/Software/recipe-01
16
16
17
+ circle-intel :
18
+ definitions :
19
+ - CMAKE_INSTALL_PREFIX : $HOME/Software/recipe-03
20
+
21
+ circle-pgi :
22
+ definitions :
23
+ - CMAKE_INSTALL_PREFIX : $HOME/Software/recipe-03
24
+
17
25
local :
18
26
definitions :
19
27
- CMAKE_INSTALL_PREFIX : $HOME/Software/recipe-01
Original file line number Diff line number Diff line change @@ -14,6 +14,14 @@ travis-osx:
14
14
definitions :
15
15
- CMAKE_INSTALL_PREFIX : $HOME/Software/recipe-02
16
16
17
+ circle-intel :
18
+ definitions :
19
+ - CMAKE_INSTALL_PREFIX : $HOME/Software/recipe-03
20
+
21
+ circle-pgi :
22
+ definitions :
23
+ - CMAKE_INSTALL_PREFIX : $HOME/Software/recipe-03
24
+
17
25
local :
18
26
definitions :
19
27
- CMAKE_INSTALL_PREFIX : $HOME/Software/recipe-02
Original file line number Diff line number Diff line change @@ -14,6 +14,14 @@ travis-osx:
14
14
definitions :
15
15
- CMAKE_INSTALL_PREFIX : $HOME/Software/recipe-03
16
16
17
+ circle-intel :
18
+ definitions :
19
+ - CMAKE_INSTALL_PREFIX : $HOME/Software/recipe-03
20
+
21
+ circle-pgi :
22
+ definitions :
23
+ - CMAKE_INSTALL_PREFIX : $HOME/Software/recipe-03
24
+
17
25
local :
18
26
definitions :
19
27
- CMAKE_INSTALL_PREFIX : $HOME/Software/recipe-03
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ #pragma once
2
+
3
+ #include < iosfwd>
4
+ #include < string>
5
+
6
+ #include " messageExport.h"
7
+
8
+ class message_EXPORT Message {
9
+ public:
10
+ Message (const std::string &m) : message_(m) {}
11
+
12
+ friend std::ostream &operator <<(std::ostream &os, Message &obj) {
13
+ return obj.printObject (os);
14
+ }
15
+
16
+ private:
17
+ std::string message_;
18
+ std::ostream &printObject (std::ostream &os);
19
+ };
20
+
21
+ std::string getUUID ();
Original file line number Diff line number Diff line change @@ -14,6 +14,14 @@ travis-osx:
14
14
definitions :
15
15
- CMAKE_INSTALL_PREFIX : $HOME/Software/recipe-04
16
16
17
+ circle-intel :
18
+ definitions :
19
+ - CMAKE_INSTALL_PREFIX : $HOME/Software/recipe-03
20
+
21
+ circle-pgi :
22
+ definitions :
23
+ - CMAKE_INSTALL_PREFIX : $HOME/Software/recipe-03
24
+
17
25
local :
18
26
definitions :
19
27
- CMAKE_INSTALL_PREFIX : $HOME/Software/recipe-04
You can’t perform that action at this time.
0 commit comments