summaryrefslogtreecommitdiffstats
path: root/test cases/cmake/17 include path order/subprojects/cmMod/cmMod.cpp
blob: d3141d5123a438a4351ac27f6f0d89a412de0fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "cmMod.hpp"

using namespace std;

cmModClass::cmModClass(string foo) {
  str = foo + " World";
}

string cmModClass::getStr() const {
  return str;
}