blob: cfdbe880f4ed51c2a73136a166f2febac7fcb415 [file] [log] [blame]
#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;
};