summaryrefslogtreecommitdiffstats
path: root/test cases/cmake/19 advanced options/subprojects/cmOpts/cmMod.hpp
blob: 074893657f6ea499ce38cd58b78e77fb00dc56d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <string>

class cmModClass {
private:
  std::string str;

public:
  cmModClass(std::string foo);

  std::string getStr() const;
  int getInt() const;
};