meson/test cases/cmake/8 custom command/subprojects/cmMod/cmMod.hpp

15 lines
242 B
C++
Raw Normal View History

2019-06-28 19:21:58 +08:00
#pragma once
#include <string>
#include "cmmodlib_export.h"
class CMMODLIB_EXPORT cmModClass {
private:
std::string str;
public:
cmModClass(std::string foo);
std::string getStr() const;
std::string getOther() const;
};