summaryrefslogtreecommitdiffstats
path: root/test cases/cmake/1 basic/subprojects/cmMod/cmMod.hpp
blob: 4445e1f53c6714c44d6b83d770ed6b323e6de022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "cmmodlib++_export.h"
#include <string>

#if MESON_MAGIC_FLAG != 42 && MESON_MAGIC_FLAG != 21
#error "Invalid MESON_MAGIC_FLAG"
#endif

class CMMODLIB___EXPORT cmModClass {
private:
  std::string str;

public:
  cmModClass(std::string foo);

  std::string getStr() const;
};