Skip to content

Commit 267e681

Browse files
committed
Make Message.hpp in ch 10, r 3 a real file
The installation goes smoothly, but the file is not copied over, nor the symlink adjusted.
1 parent c8d030f commit 267e681

File tree

5 files changed

+53
-1
lines changed

5 files changed

+53
-1
lines changed

chapter-10/recipe-01/cxx-example/menu.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ travis-osx:
1414
definitions:
1515
- CMAKE_INSTALL_PREFIX: $HOME/Software/recipe-01
1616

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+
1725
local:
1826
definitions:
1927
- CMAKE_INSTALL_PREFIX: $HOME/Software/recipe-01

chapter-10/recipe-02/cxx-example/menu.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ travis-osx:
1414
definitions:
1515
- CMAKE_INSTALL_PREFIX: $HOME/Software/recipe-02
1616

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+
1725
local:
1826
definitions:
1927
- CMAKE_INSTALL_PREFIX: $HOME/Software/recipe-02

chapter-10/recipe-03/cxx-example/menu.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ travis-osx:
1414
definitions:
1515
- CMAKE_INSTALL_PREFIX: $HOME/Software/recipe-03
1616

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+
1725
local:
1826
definitions:
1927
- CMAKE_INSTALL_PREFIX: $HOME/Software/recipe-03

chapter-10/recipe-03/cxx-example/src/Message.hpp

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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();

chapter-10/recipe-04/cxx-example/menu.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ travis-osx:
1414
definitions:
1515
- CMAKE_INSTALL_PREFIX: $HOME/Software/recipe-04
1616

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+
1725
local:
1826
definitions:
1927
- CMAKE_INSTALL_PREFIX: $HOME/Software/recipe-04

0 commit comments

Comments
 (0)