summaryrefslogtreecommitdiffstats
path: root/test cases/cmake/13 system includes/subprojects/cmMod/cmMod.cpp
blob: 1eaf0cf31f22c6011b932d530f57274479bb1925 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "cmMod.hpp"
#include "triggerWarn.hpp"

using namespace std;

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

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